Skip to content

Commit b93ccbf

Browse files
Use list instead of set when building the expected result (#6796)
1 parent 5945ea7 commit b93ccbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/director-v2/tests/unit/with_dbs/test_modules_dynamic_sidecar_docker_service_specs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def expected_dynamic_sidecar_spec(
239239
"DY_SIDECAR_PATH_OUTPUTS": "/tmp/outputs", # noqa: S108
240240
"DY_SIDECAR_PROJECT_ID": "dd1d04d9-d704-4f7e-8f0f-1ca60cc771fe",
241241
"DY_SIDECAR_STATE_EXCLUDE": json_dumps(
242-
{"*.py", "/tmp/strip_me/*"} # noqa: S108
242+
["*.py", "/tmp/strip_me/*"] # noqa: S108
243243
),
244244
"DY_SIDECAR_STATE_PATHS": json_dumps(
245245
["/tmp/save_1", "/tmp_save_2"] # noqa: S108

0 commit comments

Comments
 (0)