Skip to content

Commit 38041be

Browse files
committed
Fix test error
1 parent 8563514 commit 38041be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_modules/dagster/dagster_tests/definitions_tests/test_asset_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ def my_asset(my_input):
263263
spec = next(iter(my_asset.specs))
264264

265265
new_spec = spec.replace_attributes(
266-
deps={*spec.deps, dg.AssetDep("another_upstream")},
266+
deps=[*spec.deps, dg.AssetDep("another_upstream")],
267267
)
268268

269269
mapped_assets = dg.map_asset_specs(lambda s: new_spec, assets)

0 commit comments

Comments
 (0)