From: Stefan Behnel Date: Tue, 8 Dec 2009 10:36:19 +0000 (+0100) Subject: test fix X-Git-Tag: 0.12.1~57 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9c44f22f44fd70328388121829285ae3644225f5;p=cython.git test fix --- diff --git a/tests/run/type_inference.pyx b/tests/run/type_inference.pyx index dd899fdf..60ce1e27 100644 --- a/tests/run/type_inference.pyx +++ b/tests/run/type_inference.pyx @@ -211,7 +211,7 @@ def safe_only(): a = 1.0 assert typeof(a) == "double", typeof(c) b = 1 - assert typeof(b) == "Python object", typeof(c) + assert typeof(b) == "Python object", typeof(b) c = MyType() assert typeof(c) == "MyType", typeof(c)