From 18ec127c1ee192df8f3fc36b9eb7ed4e5e3564cd Mon Sep 17 00:00:00 2001 From: stedif <stefano.difrischia@inaf.it> Date: Fri, 8 Jul 2022 15:39:58 +0200 Subject: [PATCH] L2SS-846: exclude APSPU from disabled devices --- .../default/devices/test_device_temperature_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_temperature_manager.py b/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_temperature_manager.py index 261cf8415..81a6ea0b0 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_temperature_manager.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/default/devices/test_device_temperature_manager.py @@ -43,8 +43,8 @@ class TestDeviceTemperatureManager(AbstractTestBases.TestDeviceBase): # Exclude other devices which raise a TimeoutError, since they wait for the attribute *_translator_busy_R to become False # (set instead to True in this test environment) - self.proxy.put_property({"Shutdown_Device_List": ["STAT/SDP/1", "STAT/APSPU/1"]}) - devices = [DeviceProxy("STAT/SDP/1"), DeviceProxy("STAT/APSPU/1")] + self.proxy.put_property({"Shutdown_Device_List": ["STAT/SDP/1"]}) + devices = [DeviceProxy("STAT/SDP/1")] # make sure none of the devices are in the OFF or FAULT state. Any other state is fine for dev in devices: -- GitLab