From 4d961e7ab8ccc3caa74eaeba831ee2686eb402a6 Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Wed, 2 Feb 2022 14:16:24 +0000 Subject: [PATCH] L2SS-592: hotfix --- .../integration_test/devices/test_device_beam.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_beam.py b/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_beam.py index a1a9d0b4c..19b578a75 100644 --- a/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_beam.py +++ b/tangostationcontrol/tangostationcontrol/integration_test/devices/test_device_beam.py @@ -7,6 +7,7 @@ # Distributed under the terms of the APACHE license. # See LICENSE.txt for more info. +import time import numpy from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy @@ -47,6 +48,8 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase): # HBAT_bf_delay_step_delays = recv_proxy.get_hbat_bf_delay_step_delays() # HBAT_bf_delays = self.proxy._calculate_HBAT_bf_delays(HBAT_delays, HBAT_signal_input_delays, HBAT_bf_delay_step_delays) # self.assertNotEqual(HBAT_delays, HBAT_bf_delays) + + time.sleep(3) # Verify writing operation does not lead to errors self.proxy.HBAT_set_pointing(numpy.array([["J2000","0deg","0deg"]] * 96).flatten()) # write values to RECV -- GitLab