summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2010-08-12 11:50:14 (GMT)
committerTim Golden <mail@timgolden.me.uk>2010-08-12 11:50:14 (GMT)
commit3523443f77521ae0365ea2047a1c18491c1ce3cb (patch)
tree953ef8d1b04bd66335ba66f6f0ab641f33037e99 /Lib
parent8e4756c7635cda029e75d3c9ad6daefce3a707e6 (diff)
downloadcpython-3523443f77521ae0365ea2047a1c18491c1ce3cb.zip
cpython-3523443f77521ae0365ea2047a1c18491c1ce3cb.tar.gz
cpython-3523443f77521ae0365ea2047a1c18491c1ce3cb.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 8e070a5..f97297b 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)
################################################################