From 5217fc52291dc71d369d22ef43c86a620733929c Mon Sep 17 00:00:00 2001 From: Robert Bradshaw <robertwb@math.washington.edu> Date: Sat, 2 Apr 2011 14:35:07 -0700 Subject: [PATCH] Fix test. --- tests/run/type_inference.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.26.2