Merge of r83763 introduced 'support' into test_signal; should be 'test_support'

This commit is contained in:
Mark Dickinson 2010-08-06 21:49:50 +00:00
parent 24af0e9656
commit 27e19a21b1
1 changed files with 2 additions and 2 deletions

View File

@ -484,9 +484,9 @@ class ItimerTest(unittest.TestCase):
def test_main():
if sys.platform == "win32":
support.run_unittest(WindowsSignalTests)
test_support.run_unittest(WindowsSignalTests)
else:
support.run_unittest(BasicSignalTests, InterProcessSignalTests,
test_support.run_unittest(BasicSignalTests, InterProcessSignalTests,
WakeupSignalTests, SiginterruptTest, ItimerTest)