From 9c44f22f44fd70328388121829285ae3644225f5 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Tue, 8 Dec 2009 11:36:19 +0100 Subject: [PATCH] test fix --- 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 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) -- 2.26.2