We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c81af commit fab73a7Copy full SHA for fab73a7
pandas/tests/io/pytables/test_store.py
@@ -362,6 +362,9 @@ class Table3(tables.IsDescription):
362
expected = {"/group/table1", "/group/table2", "/group/table3"}
363
assert set(store.keys(include="native")) == expected
364
assert set(store.keys(include="pandas")) == set()
365
+ for name in expected:
366
+ df = store.get(name)
367
+ assert len(df.columns) == 1
368
369
def test_keys_illegal_include_keyword_value(self, setup_path):
370
with ensure_clean_store(setup_path) as store:
0 commit comments