From: Stefan Behnel Date: Tue, 30 Dec 2008 12:00:19 +0000 (+0100) Subject: Py3 test case fix X-Git-Tag: 0.11-beta~59 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=03448fe0088072945ddf047179dbe5e1fca0c3a2;p=cython.git Py3 test case fix --- diff --git a/tests/run/notinop.pyx b/tests/run/notinop.pyx index 9271df0f..0ad223da 100644 --- a/tests/run/notinop.pyx +++ b/tests/run/notinop.pyx @@ -66,5 +66,5 @@ def m(int a): return result def n(a): - cdef int result = a.lower() not in ['a *','b *','c *','d *'] + cdef int result = a.lower() not in [u'a *',u'b *',u'c *',u'd *'] return result