Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
bobokvsky committed Aug 19, 2024
1 parent a458dce commit 9ec0675
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tests/test_core_steps2.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,18 +466,6 @@ def test_batch_transform_with_filters_as_str(dbconn):
batch_transform_with_filters(dbconn, filters="filters_data", ds=ds)


def test_batch_transform_with_filters_as_datatable(dbconn):
ds = DataStore(dbconn, create_meta_table=True)
filters_data = pd.DataFrame([{"item_id": 0}, {"item_id": 1}, {"item_id": 2}])
filters = ds.create_table(
"filters_data", table_store=TableStoreDB(
dbconn, "filters_data", [Column("item_id", Integer, primary_key=True)], True
)
)
filters.store_chunk(filters_data, now=0)
batch_transform_with_filters(dbconn, filters=filters)


def test_batch_transform_with_filters_as_IndexDF(dbconn):
batch_transform_with_filters(
dbconn, filters=cast(IndexDF, pd.DataFrame([{"item_id": 0}, {"item_id": 1}, {"item_id": 2}]))
Expand Down

0 comments on commit 9ec0675

Please sign in to comment.