Skip to content

Commit e2f27d3

Browse files
authored
Update test.py
1 parent b81f5ca commit e2f27d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/08-Delete_element/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def test_for_loop():
1414
regex = re.compile(r"for(\s)")
1515
assert bool(regex.search(content)) == True
1616

17-
@pytest.mark.it("Use if statement")
17+
@pytest.mark.it("Use an if statement")
1818
def test_if():
1919
with open(path, 'r') as content_file:
2020
content = content_file.read()
2121
regex = re.compile(r"if(\s)")
22-
assert bool(regex.search(content)) == True
22+
assert bool(regex.search(content)) == True

0 commit comments

Comments
 (0)