[Python-checkins] r83948 - python/branches/py3k/Lib/ctypes/test/test_callbacks.py

tim.golden python-checkins at python.org
Wed Aug 11 17:59:57 CEST 2010


Author: tim.golden
Date: Wed Aug 11 17:59:57 2010
New Revision: 83948

Log:
#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

Modified:
   python/branches/py3k/Lib/ctypes/test/test_callbacks.py

Modified: python/branches/py3k/Lib/ctypes/test/test_callbacks.py
==============================================================================
--- python/branches/py3k/Lib/ctypes/test/test_callbacks.py	(original)
+++ python/branches/py3k/Lib/ctypes/test/test_callbacks.py	Wed Aug 11 17:59:57 2010
@@ -199,7 +199,6 @@
                 return True #Allow windows to keep enumerating
 
             windll.user32.EnumWindows(EnumWindowsCallbackFunc, 0)
-            self.assertFalse(windowCount == 0)
 
 ################################################################
 


More information about the Python-checkins mailing list