Skip to content

Commit 2d78f41

Browse files
Remove last ensure_clean_store from pandas/tests/io/pytables/test_keys.py
1 parent f243e45 commit 2d78f41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/pytables/test_keys.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
pytestmark = [pytest.mark.single_cpu]
1414

1515

16-
def test_keys(setup_path):
17-
with ensure_clean_store(setup_path) as store:
16+
def test_keys(tmp_path, setup_path):
17+
with HDFStore(tmp_path / setup_path) as store:
1818
store["a"] = Series(
1919
np.arange(10, dtype=np.float64), index=date_range("2020-01-01", periods=10)
2020
)

0 commit comments

Comments
 (0)