X-Git-Url: http://git.tremily.us/?a=blobdiff_plain;f=tests%2Frun%2Ftype_inference.pyx;fp=tests%2Frun%2Ftype_inference.pyx;h=61ec7c8e7f993303b1b39c9c322fa0d1dd605970;hb=488a242124d9d9018f70fa02595a5595b8f8711a;hp=992bdcc227789ec88aa7a90ec7720d7e531acfbc;hpb=febd8e9d7d49b02fde672c753c6d2ba2b7455b89;p=cython.git 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)