Commit 59d95f6d authored by Robert Bradshaw's avatar Robert Bradshaw

Python 3 test fix.

parent 1e5b4e22
...@@ -74,7 +74,7 @@ def test_string_call(a, b): ...@@ -74,7 +74,7 @@ def test_string_call(a, b):
def test_c_string_convert(char *c_string): def test_c_string_convert(char *c_string):
""" """
>>> normalize(test_c_string_convert("abc")) >>> normalize(test_c_string_convert("abc".encode('ascii')))
'abc' 'abc'
""" """
cdef string s cdef string s
......
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