Commit 4bf744f2 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test case fix

parent 586af392
......@@ -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
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