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 4faba1a commit 66eeb43Copy full SHA for 66eeb43
exercises/013-sum_of_digits/test.py
@@ -12,7 +12,7 @@ def test_for_return(capsys, app):
12
def test_for_output_type(capsys, app):
13
assert type(app.digits_sum(123)) == type(1)
14
15
-@pytest.mark.it('We tried to pass 854 as parameter and it did not return 17!')
+@pytest.mark.it('We tried to pass 854 as parameter and it did not return 17')
16
def test_for_file_output(capsys, app):
17
assert app.digits_sum(854) == (854 //100)+(854 // 10)%10+ 854%10
18
0 commit comments