Skip to content

Commit 2d3bde6

Browse files
authored
Update test.py
1 parent db4ea9e commit 2d3bde6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/016-century/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ def test_function_return(capsys, app):
2121
def test_function_return_type(capsys, app):
2222
assert type(app.century(19001)) == type(1)
2323

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')
2525
def test_for_file_output(capsys, app):
2626
assert app.century(2000) == 20
2727

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')
2929
def test_for_file_output2(capsys, app):
3030
assert app.century(2001) == 21
3131

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')
3333
def test_for_file_output3(capsys, app):
3434
assert app.century(2101) == 22
3535

0 commit comments

Comments
 (0)