From: Tim Golden Date: Thu, 12 Aug 2010 11:50:14 +0000 (+0000) Subject: #9055: remove assertion at the end of test_8959_b since the test is about crashing... X-Git-Tag: v2.7.1rc1~415 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3523443f77521ae0365ea2047a1c18491c1ce3cb;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 8e070a51047d..f97297bd1ea5 100644 --- a/Lib/ctypes/test/test_callbacks.py +++ b/Lib/ctypes/test/test_callbacks.py @@ -205,7 +205,6 @@ class SampleCallbacksTestCase(unittest.TestCase): return True #Allow windows to keep enumerating windll.user32.EnumWindows(EnumWindowsCallbackFunc, 0) - self.assertFalse(windowCount == 0) ################################################################