File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/042-understanding_classes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ def test_student_has_introduce_method():
32
32
def test_student_introduce_method_returns_expected_string ():
33
33
student1 = Student ("Alice" , 22 , 90 )
34
34
student2 = Student ("Bob" , 19 , 85 )
35
- assert student1 .introduce () == "Hello! I am Alice, I am 22 years old, and my current grade is 90"
36
- assert student2 .introduce () == "Hello! I am Bob, I am 19 years old, and my current grade is 85"
35
+ assert student1 .introduce () == "Hello! I am Alice, I am 22 years old, and my current grade is 90. "
36
+ assert student2 .introduce () == "Hello! I am Bob, I am 19 years old, and my current grade is 85. "
37
37
38
38
@pytest .mark .it ("The Student class includes the 'study' method" )
39
39
def test_student_has_study_method ():
You can’t perform that action at this time.
0 commit comments