We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b81f5ca commit e2f27d3Copy full SHA for e2f27d3
exercises/08-Delete_element/test.py
@@ -14,9 +14,9 @@ def test_for_loop():
14
regex = re.compile(r"for(\s)")
15
assert bool(regex.search(content)) == True
16
17
-@pytest.mark.it("Use if statement")
+@pytest.mark.it("Use an if statement")
18
def test_if():
19
with open(path, 'r') as content_file:
20
content = content_file.read()
21
regex = re.compile(r"if(\s)")
22
- assert bool(regex.search(content)) == True
+ assert bool(regex.search(content)) == True
0 commit comments