From: Tim Golden Date: Wed, 11 Aug 2010 15:59:57 +0000 (+0000) Subject: #9055: remove assertion at the end of test_8959_b since the test is about crashing... X-Git-Tag: v3.2a2~371 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a879e8a277e61195f5379862ef47f3ca9c69f4b;p=thirdparty%2FPython%2Fcpython.git #9055: remove assertion at the end of test_8959_b since the test is about crashing, not about counting and is difficult to manage when run as a service --- diff --git a/Lib/ctypes/test/test_callbacks.py b/Lib/ctypes/test/test_callbacks.py index 36fc539bdbef..4b468b9e11fb 100644 --- a/Lib/ctypes/test/test_callbacks.py +++ b/Lib/ctypes/test/test_callbacks.py @@ -199,7 +199,6 @@ class SampleCallbacksTestCase(unittest.TestCase): return True #Allow windows to keep enumerating windll.user32.EnumWindows(EnumWindowsCallbackFunc, 0) - self.assertFalse(windowCount == 0) ################################################################