issue8053 - logic was inverted on which platforms to run a test on.

caused test_thread to fail on windows.
This commit is contained in:
Gregory P. Smith 2010-03-04 18:26:53 +00:00
parent 7eda9e9082
commit 3198098459
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ class TestForkInThread(unittest.TestCase):
self.assertEqual(os.read(self.read_fd, 2), "OK",
"Unable to fork() in thread")
if sys.platform.startswith('win'):
if not sys.platform.startswith('win'):
test_forkinthread = _test_forkinthread
def tearDown(self):