summaryrefslogtreecommitdiff
path: root/test_tablib.py
diff options
context:
space:
mode:
authorKenichi Kamiya <kachick1@gmail.com>2013-08-31 21:02:29 +0900
committerKenichi Kamiya <kachick1@gmail.com>2013-08-31 21:04:57 +0900
commit192a5efabb6307577004b54d3beece7d0dc9f257 (patch)
treede653aeabe3adf05909eaf6b3a31fee25710e9db /test_tablib.py
parent2c14486c33d4cd3a4411bfa3cecf2302fdd8453f (diff)
downloadtablib-192a5efabb6307577004b54d3beece7d0dc9f257.tar.gz
Fix some typos in TSV test comment
Diffstat (limited to 'test_tablib.py')
-rwxr-xr-xtest_tablib.py4
1 files 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'