summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-09-06 21:56:57 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-09-06 21:56:57 -0700
commit97a626d898575fc8925700a6db7d43cf3099898e (patch)
treea2083a1f265dd5cd3673cd1cbf7678b476f2908e
parent2530735d2d57316d1df8177745e93a78de663ff7 (diff)
Fixed this syntax error on py32
-rw-r--r--tests/backends/tests.py2
1 files changed, 1 insertions, 1 deletions
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])