]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#9055: remove assertion at the end of test_8959_b since the test is about crashing...
authorTim Golden <mail@timgolden.me.uk>
Wed, 11 Aug 2010 15:59:57 +0000 (15:59 +0000)
committerTim Golden <mail@timgolden.me.uk>
Wed, 11 Aug 2010 15:59:57 +0000 (15:59 +0000)
Lib/ctypes/test/test_callbacks.py

index 36fc539bdbefa1cd9b2902b1fa4b8bc686790c21..4b468b9e11fbff4ae808a2f0b3ce27c09c117f89 100644 (file)
@@ -199,7 +199,6 @@ class SampleCallbacksTestCase(unittest.TestCase):
                 return True #Allow windows to keep enumerating
 
             windll.user32.EnumWindows(EnumWindowsCallbackFunc, 0)
-            self.assertFalse(windowCount == 0)
 
 ################################################################