From 59d1c4005e5da116a29f4fdd95221e40ba2bd30f Mon Sep 17 00:00:00 2001 From: Jiri Kozel Date: Mon, 24 Jul 2023 16:27:04 +0200 Subject: [PATCH] Add workspace_name to pylint ID --- .../publications/multi_publications/test_get_multiendpoints.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/dynamic_data/publications/multi_publications/test_get_multiendpoints.py b/tests/dynamic_data/publications/multi_publications/test_get_multiendpoints.py index 6a6cbb0b4..906b1ad62 100644 --- a/tests/dynamic_data/publications/multi_publications/test_get_multiendpoints.py +++ b/tests/dynamic_data/publications/multi_publications/test_get_multiendpoints.py @@ -930,6 +930,9 @@ def get_internal_pylint_id(query_params): publ_type = query_params.get('pub_type') if publ_type: pylint_id_parts.append(('type', publ_type.split('.')[1] if publ_type else publ_type)) + workspace = query_params.get('workspace_name') + if workspace: + pylint_id_parts.append(('workspace', workspace)) pylint_id_parts += rest_params_to_pylint_id_parts(query_params) return pylint_id_parts_to_string(pylint_id_parts)