Fix some typos in TSV test comment

This commit is contained in:
Kenichi Kamiya 2013-08-31 21:02:29 +09:00
parent 2c14486c33
commit 192a5efabb
1 changed files with 2 additions and 2 deletions

View File

@ -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'