From c5d8303cc1e6594718f8bf0c6e882bde4c80233c Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Sat, 7 Jun 2008 11:58:04 +0200 Subject: [PATCH] Fix test case syntax error --- tests/run/big_indices.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' } -- 2.26.2