From 35f6487ef085ee0b9377609da4642b591cac8e10 Mon Sep 17 00:00:00 2001 From: Andrei Tsaregorodtsev Date: Thu, 12 Sep 2024 22:07:45 +0200 Subject: [PATCH] fix: remove setup section from the test configuration --- .../Agent/test/Test_ComponentSupervisionAgent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DIRAC/FrameworkSystem/Agent/test/Test_ComponentSupervisionAgent.py b/src/DIRAC/FrameworkSystem/Agent/test/Test_ComponentSupervisionAgent.py index 2bdda6bfa26..4e5d6744f3a 100644 --- a/src/DIRAC/FrameworkSystem/Agent/test/Test_ComponentSupervisionAgent.py +++ b/src/DIRAC/FrameworkSystem/Agent/test/Test_ComponentSupervisionAgent.py @@ -672,8 +672,8 @@ def gVal(*args, **_kwargs): self.assertTrue(res["OK"]) self.restartAgent.csAPI.modifyValue.assert_has_calls( [ - call("/Systems/Sys/Production/URLs/Serv", ",".join(tempurls)), - call("/Systems/Sys/Production/URLs/Serv", ",".join(newurls)), + call("/Systems/Sys/URLs/Serv", ",".join(tempurls)), + call("/Systems/Sys/URLs/Serv", ",".join(newurls)), ], any_order=False, )