We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9ab15 commit 06d60b6Copy full SHA for 06d60b6
exercises/08-hours_and_minutes/test.py
@@ -13,12 +13,12 @@ def test_for_file_output(capsys, app):
13
assert app.hours_minutes(3900) == (1, 5)
14
15
16
-@pytest.mark.it('The function hours_minutes must return the correct output for 4004 secs')
+@pytest.mark.it('The function hours_minutes must return the correct output for 4500 secs')
17
def test_for_file_output(capsys, app):
18
assert app.hours_minutes(4500) == (1, 15)
19
20
21
-@pytest.mark.it('The function hours_minutes must return the correct output for 60 secs')
+@pytest.mark.it('The function hours_minutes must return the correct output for 7320 secs')
22
23
assert app.hours_minutes(7320) == (2, 2)
24
0 commit comments