From cc1343140dfc9986a23796ce4e7f0b8c188e11b8 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 14 Nov 2012 15:49:55 -0500 Subject: Fix a typo --- Lib/test/test_wait3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'): -- cgit v0.12