From b629c04e902f27e82e8a03f87f1dadc95f81c37e Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 19 Apr 2010 10:43:39 +0200 Subject: [PATCH] Py2 test fix --- tests/errors/py_unicode_type_errors.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/errors/py_unicode_type_errors.pyx b/tests/errors/py_unicode_type_errors.pyx index 1b4e10e3..3afe0258 100644 --- a/tests/errors/py_unicode_type_errors.pyx +++ b/tests/errors/py_unicode_type_errors.pyx @@ -13,7 +13,7 @@ def char_too_long_bytes(): cdef Py_UNICODE c = b'AB' def char_too_long_latin1(): - cdef Py_UNICODE char_bytes_latin1 = b'รถ' + cdef Py_UNICODE char_bytes_latin1 = b'\xf6' _ERRORS = """ -- 2.26.2