Skip to content

Commit d34c855

Browse files
committed
fixup! ENH: Support fspath protocol
1 parent ffa93f8 commit d34c855

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/io/test_common.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,11 @@ def test_iterator(self):
129129
])
130130
def test_read_fspath_all(self, reader, module, path):
131131
pytest.importorskip(module)
132+
assert os.path.exists(path) # trying to debug
133+
132134
mypath = CustomFSPath(path)
133135
result = reader(mypath)
134-
expected = reader(mypath)
136+
expected = reader(path)
135137
if path.endswith('.pickle'):
136138
# categorical
137139
tm.assert_categorical_equal(result, expected)

0 commit comments

Comments
 (0)