From: Robert Bradshaw Date: Sat, 2 Apr 2011 21:35:07 +0000 (-0700) Subject: Fix test. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5217fc52291dc71d369d22ef43c86a620733929c;p=cython.git Fix test. --- diff --git a/tests/run/type_inference.pyx b/tests/run/type_inference.pyx index 992bdcc2..61ec7c8e 100644 --- a/tests/run/type_inference.pyx +++ b/tests/run/type_inference.pyx @@ -156,7 +156,7 @@ def unary_operators(): a = int(1) assert typeof(a) == "Python object", typeof(a) b = not int(3) - assert typeof(b) == "int", typeof(b) + assert typeof(b) == "bint", typeof(b) c = +int(3) assert typeof(c) == "Python object", typeof(c) d = -int(5)