Skip to content

Commit f7426d6

Browse files
committed
TST: fix path for getting pickles wrt (GH8431)
1 parent b84d237 commit f7426d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_index.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@ def test_legacy_pickle_identity(self):
274274

275275
# GH 8431
276276
pth = tm.get_data_path()
277-
s1 = pd.read_pickle(os.path.join(pth,'s1-0.12.0.pkl'))
278-
s2 = pd.read_pickle(os.path.join(pth,'s2-0.12.0.pkl'))
277+
s1 = pd.read_pickle(os.path.join(pth,'s1-0.12.0.pickle'))
278+
s2 = pd.read_pickle(os.path.join(pth,'s2-0.12.0.pickle'))
279279
self.assertFalse(s1.index.identical(s2.index))
280280
self.assertFalse(s1.index.equals(s2.index))
281281

0 commit comments

Comments
 (0)