diff options
Diffstat (limited to 'Lib/test/test_wait3.py')
-rw-r--r-- | Lib/test/test_wait3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_wait3.py b/Lib/test/test_wait3.py index 3d70ced..f6a065d 100644 --- a/Lib/test/test_wait3.py +++ b/Lib/test/test_wait3.py @@ -7,7 +7,7 @@ import unittest from test.fork_wait import ForkWait from test.support import run_unittest, reap_children -if not hassattr(os, 'fork'): +if not hasattr(os, 'fork'): raise unittest.SkipTest("os.fork not defined") if not hasattr(os, 'wait3'): |