File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ def test_function_return(capsys, app):
21
21
def test_function_return_type (capsys , app ):
22
22
assert type (app .century (19001 )) == type (1 )
23
23
24
- @pytest .mark .it ('We tried to pass 2000 as parameter and it did not return 20! ' )
24
+ @pytest .mark .it ('We tried to pass 2000 as parameter and it did not return 20' )
25
25
def test_for_file_output (capsys , app ):
26
26
assert app .century (2000 ) == 20
27
27
28
- @pytest .mark .it ('We tried to pass 2000 as parameter and it did not return 21! ' )
28
+ @pytest .mark .it ('We tried to pass 2001 as parameter and it did not return 21' )
29
29
def test_for_file_output2 (capsys , app ):
30
30
assert app .century (2001 ) == 21
31
31
32
- @pytest .mark .it ('We tried to pass 2000 as parameter and it did not return 21! ' )
32
+ @pytest .mark .it ('We tried to pass 2101 as parameter and it did not return 22 ' )
33
33
def test_for_file_output3 (capsys , app ):
34
34
assert app .century (2101 ) == 22
35
35
You can’t perform that action at this time.
0 commit comments