From 97a626d898575fc8925700a6db7d43cf3099898e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 6 Sep 2013 21:56:57 -0700 Subject: [PATCH] Fixed this syntax error on py32 --- tests/backends/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/backends/tests.py b/tests/backends/tests.py index 94a92c75b9..903aedec20 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -980,6 +980,6 @@ class UnicodeArrayTestCase(TestCase): self.assertEqual(a[0], b[0]) def test_select_unicode_array(self): - a = [u"ᄲawef"] + a = ["ᄲawef"] b = self.select(a) self.assertEqual(a[0], b[0])