Skip to content

Commit cb5b4c4

Browse files
authored
Update test.py
1 parent 4e9319c commit cb5b4c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/019-digital_clock/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ def test_function_return(capsys, app):
1414
def 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!')
1818
def 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!')
2222
def test_for_file_output(capsys, app):
23-
assert app.digital_clock(150) == (2,30)
23+
assert app.digital_clock(150) == (2, 30)
2424

0 commit comments

Comments
 (0)