Skip to content

Commit f340384

Browse files
committed
💚 make test issue1 pass #2
1 parent 07f0b4d commit f340384

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_bug_fixes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@
99
def test_issue_1():
1010
test_file = get_fixture("issue_1.xlsx")
1111
data = get_data(test_file)
12+
data_array = [
13+
list(map(str, row)) for row in data["dataSheet1"]
14+
]
1215
eq_(
13-
data["dataSheet1"],
16+
data_array,
1417
[
1518
["", "D0"],
1619
["Pads", "PADA"],

0 commit comments

Comments
 (0)