Commit 03448fe0 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test case fix

parent 0cc907d9
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment