We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b84d237 commit f7426d6Copy full SHA for f7426d6
pandas/tests/test_index.py
@@ -274,8 +274,8 @@ def test_legacy_pickle_identity(self):
274
275
# GH 8431
276
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'))
+ s1 = pd.read_pickle(os.path.join(pth,'s1-0.12.0.pickle'))
+ s2 = pd.read_pickle(os.path.join(pth,'s2-0.12.0.pickle'))
279
self.assertFalse(s1.index.identical(s2.index))
280
self.assertFalse(s1.index.equals(s2.index))
281
0 commit comments