Skip to content

Commit 53cb910

Browse files
authored
Update test.py
1 parent 151658f commit 53cb910

File tree

1 file changed

+2
-2
lines changed
  • exercises/01.4-Add-item-to-list

1 file changed

+2
-2
lines changed

exercises/01.4-Add-item-to-list/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def test_import_random():
88
regex = re.compile(r"import(\s)+random")
99
assert bool(regex.search(content)) == True
1010

11-
@pytest.mark.it("Use the for loop to loop 10 times")
11+
@pytest.mark.it("Use a for loop to loop 10 times")
1212
def test_for_loop():
1313
path = os.path.dirname(os.path.abspath(__file__))+'/app.py'
1414
with open(path, 'r') as content_file:
@@ -17,7 +17,7 @@ def test_for_loop():
1717
assert bool(regex.search(content)) == True
1818

1919

20-
@pytest.mark.it("Use the randint function to add a radom number to the list each time you loop")
20+
@pytest.mark.it("Use the randint function to add a random number to the list each time you loop")
2121
def test_for_randint():
2222
path = os.path.dirname(os.path.abspath(__file__))+'/app.py'
2323
with open(path, 'r') as content_file:

0 commit comments

Comments
 (0)