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 8e73ab0 commit dcd7b76Copy full SHA for dcd7b76
exercises/34-a_aa_aaa_aaaa/test.py
@@ -8,10 +8,10 @@ def test_function_existence(capsys, app):
8
def test_expected_output(capsys, app):
9
assert app.computed_value(9) == 11106
10
11
-@pytest.mark.it('The function should work with other enties. Testing with 123')
+@pytest.mark.it('The function should work with other inputs. Testing with 123')
12
def test_another_output(capsys, app):
13
assert app.computed_value(123) == 123246369492
14
15
-@pytest.mark.it('The function should work with other enties. Testing with 0')
+@pytest.mark.it('The function should work with other inputs. Testing with 0')
16
def test_with_zero(capsys, app):
17
assert app.computed_value(0) == 0
0 commit comments