Skip to content
Snippets Groups Projects
Commit baea5392 authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

Merge branch 'L2SS-889-fix-digitalbeam-integration-test' into 'master'

L2SS-889: fix digitalbeam integration test

Closes L2SS-889

See merge request !391
parents fcb72315 54465ab6
Branches
Tags
1 merge request!391L2SS-889: fix digitalbeam integration test
...@@ -37,7 +37,17 @@ class TestDeviceDigitalBeam(AbstractTestBases.TestDeviceBase): ...@@ -37,7 +37,17 @@ class TestDeviceDigitalBeam(AbstractTestBases.TestDeviceBase):
beamlet_proxy.set_defaults() beamlet_proxy.set_defaults()
return beamlet_proxy return beamlet_proxy
def setup_sdp_proxy(self):
# setup SDP, on which this device depends
sdp_proxy = TestDeviceProxy("STAT/SDP/1")
sdp_proxy.off()
sdp_proxy.warm_boot()
sdp_proxy.set_defaults()
return sdp_proxy
def test_pointing_to_zenith(self): def test_pointing_to_zenith(self):
self.setup_sdp_proxy()
self.setup_recv_proxy()
# Setup beamlet configuration # Setup beamlet configuration
self.beamlet_proxy.clock_RW = 200 * 1000000 self.beamlet_proxy.clock_RW = 200 * 1000000
self.beamlet_proxy.subband_select = list(range(488)) self.beamlet_proxy.subband_select = list(range(488))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment