From b93ccbf93d2e368c7f5badb5ff6b3e01731a0d13 Mon Sep 17 00:00:00 2001 From: Giancarlo Romeo Date: Thu, 21 Nov 2024 16:35:02 +0100 Subject: [PATCH] Use list instead of set when building the expected result (#6796) --- .../test_modules_dynamic_sidecar_docker_service_specs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/director-v2/tests/unit/with_dbs/test_modules_dynamic_sidecar_docker_service_specs.py b/services/director-v2/tests/unit/with_dbs/test_modules_dynamic_sidecar_docker_service_specs.py index 2d96c0248d9..e5453fd2687 100644 --- a/services/director-v2/tests/unit/with_dbs/test_modules_dynamic_sidecar_docker_service_specs.py +++ b/services/director-v2/tests/unit/with_dbs/test_modules_dynamic_sidecar_docker_service_specs.py @@ -239,7 +239,7 @@ def expected_dynamic_sidecar_spec( "DY_SIDECAR_PATH_OUTPUTS": "/tmp/outputs", # noqa: S108 "DY_SIDECAR_PROJECT_ID": "dd1d04d9-d704-4f7e-8f0f-1ca60cc771fe", "DY_SIDECAR_STATE_EXCLUDE": json_dumps( - {"*.py", "/tmp/strip_me/*"} # noqa: S108 + ["*.py", "/tmp/strip_me/*"] # noqa: S108 ), "DY_SIDECAR_STATE_PATHS": json_dumps( ["/tmp/save_1", "/tmp_save_2"] # noqa: S108