Skip to content

Commit e84c78a

Browse files
authored
Update test.py
1 parent 9154e2f commit e84c78a

File tree

1 file changed

+2
-2
lines changed
  • exercises/27-sequence-of-words

1 file changed

+2
-2
lines changed

exercises/27-sequence-of-words/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ def test_function_existence(capsys, app):
99
def test_function_existence(capsys, app):
1010
assert app.sequence_of_words("bag,hello,without,world") == "bag,hello,without,world"
1111

12-
@pytest.mark.it('The function should return the expected output')
12+
@pytest.mark.it('The function should return the expected output. Testing with different values')
1313
def test_function_existence(capsys, app):
14-
assert app.sequence_of_words("No,pain,gain") == "No,gain,pain"
14+
assert app.sequence_of_words("No,pain,gain") == "No,gain,pain"

0 commit comments

Comments
 (0)