Skip to content

Commit dcd7b76

Browse files
authored
Update test.py
1 parent 8e73ab0 commit dcd7b76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/34-a_aa_aaa_aaaa/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def test_function_existence(capsys, app):
88
def test_expected_output(capsys, app):
99
assert app.computed_value(9) == 11106
1010

11-
@pytest.mark.it('The function should work with other enties. Testing with 123')
11+
@pytest.mark.it('The function should work with other inputs. Testing with 123')
1212
def test_another_output(capsys, app):
1313
assert app.computed_value(123) == 123246369492
1414

15-
@pytest.mark.it('The function should work with other enties. Testing with 0')
15+
@pytest.mark.it('The function should work with other inputs. Testing with 0')
1616
def test_with_zero(capsys, app):
1717
assert app.computed_value(0) == 0

0 commit comments

Comments
 (0)