Fix a typo

This commit is contained in:
Brett Cannon 2012-11-14 15:49:55 -05:00
parent 5aa1dd5f06
commit cc1343140d
1 changed files with 1 additions and 1 deletions

View File

@ -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'):