Skip to content
Snippets Groups Projects
Commit 4d961e7a authored by Corné Lukken's avatar Corné Lukken
Browse files

L2SS-592: hotfix

parent 398a62ff
No related branches found
No related tags found
1 merge request!230L2SS-588: Prevent running integration tests twice
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
# Distributed under the terms of the APACHE license. # Distributed under the terms of the APACHE license.
# See LICENSE.txt for more info. # See LICENSE.txt for more info.
import time
import numpy import numpy
from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy from tangostationcontrol.integration_test.device_proxy import TestDeviceProxy
...@@ -47,6 +48,8 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase): ...@@ -47,6 +48,8 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase):
# HBAT_bf_delay_step_delays = recv_proxy.get_hbat_bf_delay_step_delays() # 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) # 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) # self.assertNotEqual(HBAT_delays, HBAT_bf_delays)
time.sleep(3)
# Verify writing operation does not lead to errors # Verify writing operation does not lead to errors
self.proxy.HBAT_set_pointing(numpy.array([["J2000","0deg","0deg"]] * 96).flatten()) # write values to RECV self.proxy.HBAT_set_pointing(numpy.array([["J2000","0deg","0deg"]] * 96).flatten()) # write values to RECV
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment