Skip to content

Commit

Permalink
single sheet in book should be mentioned
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed May 12, 2015
1 parent 8337f2d commit 9d8c57b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_csv_book.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def setUp(self):

def test_sheet_writer_to_memory(self):
io = get_io(self.file_type)
w = CSVSheetWriter(io, None)
w = CSVSheetWriter(io, None, single_sheet_in_book=True)
for row in self.data:
w.write_row(row)
w.close()
Expand All @@ -228,7 +228,7 @@ def test_sheet_writer_to_memory(self):

def test_book_writer_to_memroy(self):
io = get_io(self.file_type)
b = CSVWriter(io)
b = CSVWriter(io, single_sheet_in_book=True)
w = b.create_sheet(None)
for row in self.data:
w.write_row(row)
Expand Down

0 comments on commit 9d8c57b

Please sign in to comment.