From: Stefan Behnel Date: Wed, 26 Dec 2012 11:25:34 +0000 (+0100) Subject: improve error output in test case X-Git-Tag: 0.18b1~57^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fdb48d4253eb2be29d40da5dd161347b140d405;p=platform%2Fupstream%2Fpython-cython.git improve error output in test case --- diff --git a/tests/run/cross_closure_type_inference.pyx b/tests/run/cross_closure_type_inference.pyx index 2b7ef4a..0e4fafd 100644 --- a/tests/run/cross_closure_type_inference.pyx +++ b/tests/run/cross_closure_type_inference.pyx @@ -14,7 +14,7 @@ def test_outer_inner_double(): nonlocal x x = 2.0 inner() - assert x == 2.0 + assert x == 2.0, str(x) return cython.typeof(x)