Skip to content

Commit b03680b

Browse files
committed
Remove non-3.8 operator
1 parent f53a021 commit b03680b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/resources/test_design_workflows.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def test_basic_methods(workflow, collection):
8686
@pytest.mark.parametrize("optional_args", all_combination_lengths(OPTIONAL_ARGS))
8787
def test_register(session, branch_data, collection, optional_args):
8888
kw_args = {argument: None for argument, factory in OPTIONAL_ARGS}
89-
kw_args |= {argument: factory() for argument, factory in optional_args}
89+
kw_args.update({argument: factory() for argument, factory in optional_args})
9090
workflow_data = DesignWorkflowDataFactory(**kw_args, branch=branch_data)
9191

9292
# Given

0 commit comments

Comments
 (0)