This commit is contained in:
chfw 2016-08-23 17:51:27 +01:00
commit aff0eb7272
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ class PyexcelMultipleSheetBase:
for s in b:
data = pyexcel.utils.to_array(s)
assert self.content[s.name] == data
si = pyexcel.sheets.iterators.SheetIterator(b)
si = pyexcel.iterators.SheetIterator(b)
for s in si:
data = pyexcel.utils.to_array(s)
assert self.content[s.name] == data

View File

@ -6,7 +6,7 @@ from nose.tools import eq_
class TestFilter:
def setUp(self):
self.test_file = "test_filter.xlsx"
self.test_file = "test_filter.xls"
sample = [
[1, 21, 31],
[2, 22, 32],