Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bobokvsky committed Aug 19, 2024
1 parent 9ec0675 commit 220e344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_core_steps2.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def test_batch_transform_with_filter(dbconn):
step.run_full(
ds,
run_config=RunConfig(
filters={"pipeline_id": 0},
filters=[{"pipeline_id": 0}],
),
)

Expand Down Expand Up @@ -169,7 +169,7 @@ def test_batch_transform_with_filter_not_in_transform_index(dbconn):

step.run_full(
ds,
run_config=RunConfig(filters={"pipeline_id": 0}),
run_config=RunConfig(filters=[{"pipeline_id": 0}]),
)

assert_datatable_equal(tbl2, TEST_DF1_2.query("pipeline_id == 0")[["item_id", "a"]])
Expand Down Expand Up @@ -298,7 +298,7 @@ def gen_func():
func=gen_func,
ds=ds,
output_dts=[tbl],
run_config=RunConfig(filters={"pipeline_id": 0}),
run_config=RunConfig(filters=[{"pipeline_id": 0}]),
)

assert_datatable_equal(
Expand Down

0 comments on commit 220e344

Please sign in to comment.