File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/01.4-Add-item-to-list Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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" )
1212def 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" )
2121def test_for_randint ():
2222 path = os .path .dirname (os .path .abspath (__file__ ))+ '/app.py'
2323 with open (path , 'r' ) as content_file :
You can’t perform that action at this time.
0 commit comments