summaryrefslogtreecommitdiff
path: root/test_tablib.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_tablib.py')
-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):