Merge pull request #116 from kachick/fix-tsv-typo

Fix some typos in TSV test comment
This commit is contained in:
Kenneth Reitz 2014-01-08 11:43:50 -08:00
commit 7f0748aac9
1 changed files with 2 additions and 2 deletions

View File

@ -248,9 +248,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'