Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fa99af1

Browse files
committedJun 26, 2023
closes #194
1 parent 375f566 commit fa99af1

File tree

1 file changed

+2
-2
lines changed
  • Modules and packages/Executing modules as scripts/tests

1 file changed

+2
-2
lines changed
 

Diff for: ‎Modules and packages/Executing modules as scripts/tests/test_task.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def test_some_main(self):
2424
msg='You should move the last print statement in some_module into the `main` block.')
2525

2626
def test_main_main(self):
27-
self.assertFalse("This should be printed ONLY when dict_keys.py is called directly." in output,
28-
msg='You should move the last print statement in dict_keys.py into the `main` block.')
27+
self.assertFalse("This should be printed ONLY when task.py is called directly." in output,
28+
msg='You should move the last print statement in task.py into the `main` block.')
2929

3030
def test_main_func(self):
3131
self.assertTrue('This is a message from the function in the imported module.' in output,

0 commit comments

Comments
 (0)
Please sign in to comment.