Skip to content

Commit 03d7373

Browse files
authored
Update test.py
1 parent 186ae6f commit 03d7373

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/13-Filter_list/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import io, sys, pytest, os, re
22
path = os.path.dirname(os.path.abspath(__file__))+'/app.py'
33

4-
@pytest.mark.it("Good!!! 😎 Maybe your are smart!!!")
4+
@pytest.mark.it("You should only filter numbers greater than 10")
55
def test_output(capsys, app):
66
import app
77
captured = capsys.readouterr()
@@ -12,4 +12,4 @@ def test_if():
1212
with open(path, 'r') as content_file:
1313
content = content_file.read()
1414
regex = re.compile(r"filter")
15-
assert bool(regex.search(content)) == True
15+
assert bool(regex.search(content)) == True

0 commit comments

Comments
 (0)