File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
exercises/019-digital_clock Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ def test_function_return(capsys, app):
1414def test_function_return_type (capsys , app ):
1515 assert type (app .digital_clock (194 )) == type ((3 , 14 ))
1616
17- @pytest .mark .it ('We tried to pass 194 as parameter and it did not return (3, 14)! Keep Trying!' )
17+ @pytest .mark .it ('We tried to pass 194 as parameter and it did not return (3, 14). Keep Trying!' )
1818def test_for_file_output (capsys , app ):
1919 assert app .digital_clock (194 ) == (3 , 14 )
2020
21- @pytest .mark .it ('We tried to pass 150 as parameter and it did not return (2, 50)! Keep Trying!' )
21+ @pytest .mark .it ('We tried to pass 150 as parameter and it did not return (2, 30). Keep Trying!' )
2222def test_for_file_output (capsys , app ):
23- assert app .digital_clock (150 ) == (2 ,30 )
23+ assert app .digital_clock (150 ) == (2 , 30 )
2424
You can’t perform that action at this time.
0 commit comments