From: Stefan Behnel Date: Mon, 22 Mar 2010 15:30:26 +0000 (+0100) Subject: test fix after optimisation X-Git-Tag: 0.13.beta0~256 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c35d101f8df6c7a648e64afd24db1ff29d73fd1d;p=cython.git test fix after optimisation --- diff --git a/tests/run/charptr_len.pyx b/tests/run/charptr_len.pyx index f1372ec0..5b87a009 100644 --- a/tests/run/charptr_len.pyx +++ b/tests/run/charptr_len.pyx @@ -69,15 +69,9 @@ def lentest_uchar_c(): return l -@cython.test_assert_path_exists( - "//SimpleCallNode", - ) def lentest_py(): return len(pystr) -@cython.test_assert_path_exists( - "//SimpleCallNode", - ) def lentest_py_c(): cdef Py_ssize_t l = len(pystr) return l