diff --git a/examples/development_to_production/development_to_production_tests/test_assets.py b/examples/development_to_production/development_to_production_tests/test_assets.py index 19498e8cdb61f..d0f68287d3e82 100644 --- a/examples/development_to_production/development_to_production_tests/test_assets.py +++ b/examples/development_to_production/development_to_production_tests/test_assets.py @@ -7,7 +7,8 @@ def test_items(): context = build_asset_context( - resources={"hn_client": StubHNClient()}, op_config={"N": StubHNClient().fetch_max_item_id()} + resources={"hn_client": StubHNClient()}, + asset_config={"N": StubHNClient().fetch_max_item_id()}, ) hn_dataset = items(context) assert isinstance(hn_dataset, pd.DataFrame)