Skip to content

Commit 66eeb43

Browse files
authored
Update test.py
1 parent 4faba1a commit 66eeb43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/013-sum_of_digits/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_for_return(capsys, app):
1212
def test_for_output_type(capsys, app):
1313
assert type(app.digits_sum(123)) == type(1)
1414

15-
@pytest.mark.it('We tried to pass 854 as parameter and it did not return 17!')
15+
@pytest.mark.it('We tried to pass 854 as parameter and it did not return 17')
1616
def test_for_file_output(capsys, app):
1717
assert app.digits_sum(854) == (854 //100)+(854 // 10)%10+ 854%10
1818

0 commit comments

Comments
 (0)