Skip to content
Snippets Groups Projects
Commit af12683e authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-601: Relax wait in test for now

parent e5c7d8aa
No related branches found
No related tags found
1 merge request!254L2SS-661: Read all attributes and fix bugs
...@@ -178,7 +178,11 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase): ...@@ -178,7 +178,11 @@ class TestDeviceBeam(AbstractTestBases.TestDeviceBase):
self.proxy.HBAT_pointing_direction_RW = new_pointings self.proxy.HBAT_pointing_direction_RW = new_pointings
# wait for tracking thread to pick up and set. should be almost instant # wait for tracking thread to pick up and set. should be almost instant
time.sleep(0.1) for i in range(20):
if self.proxy.HBAT_pointing_direction_R[0][0] == "J2000":
break
time.sleep(0.5)
# check pointing # check pointing
self.assertListEqual(new_pointings, list(self.proxy.HBAT_pointing_direction_R)) self.assertListEqual(new_pointings, list(self.proxy.HBAT_pointing_direction_R))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment