summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.org>2016-02-07 06:32:10 -0500
committerKenneth Reitz <me@kennethreitz.org>2016-02-07 06:32:10 -0500
commitc5920249ded38dc5fe70f22021f4a0dd73dd97cf (patch)
treec15be396327ee27fbce361d5243cfbd23a898837
parent9b6a73c97c09e8d6c8eae90456c1af2d3b742f22 (diff)
downloadtablib-c5920249ded38dc5fe70f22021f4a0dd73dd97cf.tar.gz
python 3.2 is terrible
-rwxr-xr-xtest_tablib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_tablib.py b/test_tablib.py
index ea8ff0a..2a4f687 100755
--- a/test_tablib.py
+++ b/test_tablib.py
@@ -880,7 +880,7 @@ class TablibTestCase(unittest.TestCase):
# add another entry to test right field width for
# integer
self.founders.append(('Old', 'Man', 100500))
- self.assertEqual(u'first_name|last_name |gpa ', unicode(self.founders).split('\n')[0])
+ self.assertEqual('first_name|last_name |gpa ', unicode(self.founders).split('\n')[0])
def test_databook_add_sheet_accepts_only_dataset_instances(self):