From: Stefan Behnel Date: Tue, 30 Dec 2008 12:05:36 +0000 (+0100) Subject: Py3 test case fix X-Git-Tag: 0.11-beta~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4bf744f21d657d6d18fb1cefe9f0e68e81e9e43b;p=cython.git Py3 test case fix --- diff --git a/tests/run/inop.pyx b/tests/run/inop.pyx index c7ba3768..2b9c693c 100644 --- a/tests/run/inop.pyx +++ b/tests/run/inop.pyx @@ -66,5 +66,5 @@ def m(int a): return result def n(a): - cdef int result = a.lower() in ['a *','b *','c *','d *'] + cdef int result = a.lower() in [u'a *',u'b *',u'c *',u'd *'] return result