Skip to content

Commit 06d60b6

Browse files
Update test.py
1 parent dd9ab15 commit 06d60b6

File tree

1 file changed

+2
-2
lines changed
  • exercises/08-hours_and_minutes

1 file changed

+2
-2
lines changed

exercises/08-hours_and_minutes/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ def test_for_file_output(capsys, app):
1313
assert app.hours_minutes(3900) == (1, 5)
1414

1515

16-
@pytest.mark.it('The function hours_minutes must return the correct output for 4004 secs')
16+
@pytest.mark.it('The function hours_minutes must return the correct output for 4500 secs')
1717
def test_for_file_output(capsys, app):
1818
assert app.hours_minutes(4500) == (1, 15)
1919

2020

21-
@pytest.mark.it('The function hours_minutes must return the correct output for 60 secs')
21+
@pytest.mark.it('The function hours_minutes must return the correct output for 7320 secs')
2222
def test_for_file_output(capsys, app):
2323
assert app.hours_minutes(7320) == (2, 2)
2424

0 commit comments

Comments
 (0)