Skip to content

Commit 829f396

Browse files
authored
Update test.py
1 parent 5c3159b commit 829f396

File tree

1 file changed

+2
-2
lines changed
  • exercises/26-two-dimensional-array

1 file changed

+2
-2
lines changed

exercises/26-two-dimensional-array/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.two_dimensional_list(3,5) == [[0, 0, 0, 0, 0], [0, 1, 2, 3, 4], [0, 2, 4, 6, 8]]
1010

11-
@pytest.mark.it('The function should work with other entries. Testing with 2, 7')
11+
@pytest.mark.it('The function should work with other entries. Testing with (2, 7)')
1212
def test_expected_output(capsys, app):
1313
assert app.two_dimensional_list(2,7) == [[0, 0, 0, 0, 0, 0, 0], [0, 1, 2, 3, 4, 5, 6]]
1414

15-
@pytest.mark.it('The function should work with other entries. Testing with 1, 10')
15+
@pytest.mark.it('The function should work with other entries. Testing with (1, 10)')
1616
def test_expected_output(capsys, app):
1717
assert app.two_dimensional_list(1,10) == [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]

0 commit comments

Comments
 (0)