Skip to content

Commit d82e4bf

Browse files
committed
💚 update broken unit tests
1 parent ff27a18 commit d82e4bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_bug_fixes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from unittest.mock import MagicMock
33

44
from nose.tools import eq_
5-
5+
from pyexcel_io.reader import EncapsulatedSheetReader
66
from pyexcel_xlsxr import get_data
77

88

@@ -128,7 +128,7 @@ def test_issue_5():
128128
)
129129
from pyexcel_xlsxr.xlsxr import XLSXSheet
130130

131-
sheet = XLSXSheet(native_sheet)
131+
sheet = EncapsulatedSheetReader(XLSXSheet(native_sheet))
132132
data = sheet.to_array()
133133
eq_(list(data), [[None, 11, 11]])
134134

0 commit comments

Comments
 (0)