Skip to content

Commit f5f42e5

Browse files
committed
I put the parser in an opendocument package, the test name should match
1 parent adfce67 commit f5f42e5

File tree

2 files changed

+3
-152
lines changed

2 files changed

+3
-152
lines changed

pandas/tests/io/test_ods.py

-149
This file was deleted.

pandas/tests/io/test_opendocument.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ def test_runlengthencoding(self):
144144
'runlengthencoding.ods', 'Sheet1', header=None)
145145
assert sheet.shape == (5, 3)
146146
# check by column, not by row.
147-
assert list(sheet[0]) == [1.0, 1.0, 2.0, 2.0, 2.0]
148-
assert list(sheet[1]) == [1.0, 2.0, 2.0, 2.0, 2.0]
149-
assert list(sheet[2]) == [1.0, 2.0, 2.0, 2.0, 2.0]
147+
assert list(sheet[0]) == [1.0, 1.0, 2.0, 2.0, 2.0]
148+
assert list(sheet[1]) == [1.0, 2.0, 2.0, 2.0, 2.0]
149+
assert list(sheet[2]) == [1.0, 2.0, 2.0, 2.0, 2.0]

0 commit comments

Comments
 (0)