summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test/test_functions.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/ctypes/test/test_functions.py')
-rw-r--r--Lib/ctypes/test/test_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_functions.py b/Lib/ctypes/test/test_functions.py
index bbcbbc1..9e5a6f8 100644
--- a/Lib/ctypes/test/test_functions.py
+++ b/Lib/ctypes/test/test_functions.py
@@ -293,7 +293,7 @@ class FunctionTestCase(unittest.TestCase):
f.argtypes = [c_longlong, MyCallback]
def callback(value):
- self.failUnless(isinstance(value, (int, int)))
+ self.failUnless(isinstance(value, int))
return value & 0x7FFFFFFF
cb = MyCallback(callback)