From 5257cc483f479afd828007724baae891413931e2 Mon Sep 17 00:00:00 2001 From: JamieDeMaria Date: Thu, 21 Sep 2023 18:24:26 -0400 Subject: [PATCH] param name --- .../development_to_production_tests/test_assets.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)