summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2010-08-11 15:59:57 (GMT)
committerTim Golden <mail@timgolden.me.uk>2010-08-11 15:59:57 (GMT)
commit3a879e8a277e61195f5379862ef47f3ca9c69f4b (patch)
tree1753debb8e94d6e42017b8ff70081406acaeadab /Lib
parent126c2960ca36f26730e28f41f66e62f0934d0575 (diff)
downloadcpython-3a879e8a277e61195f5379862ef47f3ca9c69f4b.zip
cpython-3a879e8a277e61195f5379862ef47f3ca9c69f4b.tar.gz
cpython-3a879e8a277e61195f5379862ef47f3ca9c69f4b.tar.bz2
#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
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ctypes/test/test_callbacks.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_callbacks.py b/Lib/ctypes/test/test_callbacks.py
index 36fc539..4b468b9 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)
################################################################