From b6d35a311d87fc70193e53d2b18ca59196028b34 Mon Sep 17 00:00:00 2001 From: stedif <stefano.difrischia@inaf.it> Date: Thu, 11 Aug 2022 09:07:33 +0200 Subject: [PATCH] L2SS-572: fix typos --- .../tangostationcontrol/test/beam/test_delays.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tangostationcontrol/tangostationcontrol/test/beam/test_delays.py b/tangostationcontrol/tangostationcontrol/test/beam/test_delays.py index f44265e60..fd4e96628 100644 --- a/tangostationcontrol/tangostationcontrol/test/beam/test_delays.py +++ b/tangostationcontrol/tangostationcontrol/test/beam/test_delays.py @@ -93,7 +93,7 @@ class TestDelays(base.TestCase): direction = "J2000", "0deg", "0deg" # calculate the delays based on the set reference position, the set time and now the set direction and antenna positions. - delays = d.convert(direction, antenna_itrf) + delays = d.delays(direction, antenna_itrf) self.assertListEqual(delays.tolist(), [0.0], msg=f"delays = {delays}") @@ -112,7 +112,7 @@ class TestDelays(base.TestCase): direction = "J2000", "0deg", "90deg" # calculate the delays based on the set reference position, the set time and now the set direction and antenna positions. - delays = d.convert(direction, antenna_itrf) + delays = d.delays(direction, antenna_itrf) # check for regression self.assertAlmostEqual(-8.31467564781444e-07, delays[0], delta=1.0e-10) @@ -140,7 +140,7 @@ class TestDelays(base.TestCase): direction = "J2000", "0deg", "90deg" # calculate the delays based on the set reference position, the set time and now the set direction and antenna positions. - delays = d.convert(direction, antenna_itrf) + delays = d.delays(direction, antenna_itrf) self.assertAlmostEqual(0.1, delays[0], 6, f"delays[0] = {delays[0]}") -- GitLab