From 65dc76209b11e10dd3708c9f8a10b8e3bdce87f8 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Mon, 20 Oct 2025 10:27:47 -0300 Subject: [PATCH] SIENTIAPDE-1312 Enhance type hinting in test_orchestrator_functions.py by specifying the type of slot_config as a dictionary for improved code clarity. --- tests/orchestrator/utils/test_orchestrator_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/orchestrator/utils/test_orchestrator_functions.py b/tests/orchestrator/utils/test_orchestrator_functions.py index ee91a1f..628b2f8 100644 --- a/tests/orchestrator/utils/test_orchestrator_functions.py +++ b/tests/orchestrator/utils/test_orchestrator_functions.py @@ -251,7 +251,7 @@ def test_gather_read_tags(): def test_build_tag_config(): tag = {'server_id': '1', 'server_name': 'test_server_name', 'tag_address': 'test_tag_address'} opc_servers = {'1': {'server_name': 'test_server_name', 'url': 'test_url', 'uri': 'test_uri'}} - slot_config = {'1': {}} + slot_config: dict = {'1': {}} i = 1 result = build_tag_config(tag, slot_config, opc_servers, i) expected = {