Commit f9d4954d authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

CT-217: Error test on receptors check.

parent 101a7784
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ class TestCspSubarray(TestBase):
        assert obs_state == ObsState.IDLE
        receptors = self.midcsp_subarray01.assignedReceptors
        LOGGER.info("Receptor assigned to the subarray {}".format(receptors))
        assert not receptors.any()
        assert receptors.any()
        try:
            LOGGER.info("invoke remove all receptors")
            self.midcsp_subarray01.ReleaseAllResources()
@@ -151,6 +151,7 @@ class TestCspSubarray(TestBase):
        obs_state = self.midcsp_subarray01.obsState
        LOGGER.info("obs_state:{}".format(obs_state))
        receptors = self.midcsp_subarray01.assignedReceptors
        assert not receptors.any()
        LOGGER.info("Receptor assigned to the subarray {}".format(receptors))

    def _goto_idle(self):