From: Dag Sverre Seljebotn Date: Sat, 7 Jun 2008 09:58:04 +0000 (+0200) Subject: Fix test case syntax error X-Git-Tag: 0.9.8rc1~11^2~10^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c5d8303cc1e6594718f8bf0c6e882bde4c80233c;p=cython.git Fix test case syntax error --- diff --git a/tests/run/big_indices.pyx b/tests/run/big_indices.pyx index 7a787912..2f368afb 100644 --- a/tests/run/big_indices.pyx +++ b/tests/run/big_indices.pyx @@ -13,7 +13,7 @@ def test(): cdef unsigned long pos = -2 # will be a large positive number print "neg", neg > 0 - print "pos", pos > - + print "pos", pos > 0 D = { neg: 'neg', pos: 'pos' }