From 192a5efabb6307577004b54d3beece7d0dc9f257 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Sat, 31 Aug 2013 21:02:29 +0900 Subject: [PATCH] Fix some typos in TSV test comment --- test_tablib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_tablib.py b/test_tablib.py index b9464b4..21f100f 100755 --- a/test_tablib.py +++ b/test_tablib.py @@ -249,9 +249,9 @@ class TablibTestCase(unittest.TestCase): def test_tsv_export(self): - """Verify exporting dataset object as CSV.""" + """Verify exporting dataset object as TSV.""" - # Build up the csv string with headers first, followed by each row + # Build up the tsv string with headers first, followed by each row tsv = '' for col in self.headers: tsv += col + '\t'