Skip to content
Snippets Groups Projects
Unverified Commit ff8ae579 authored by Drew Devereux's avatar Drew Devereux
Browse files

[MCCS-163] merge fix

parent 32340bc4
No related branches found
No related tags found
No related merge requests found
...@@ -532,28 +532,6 @@ class TestSKABaseDevice(object): ...@@ -532,28 +532,6 @@ class TestSKABaseDevice(object):
# Check that we can put it on standby when it is already on standby # Check that we can put it on standby when it is already on standby
tango_context.device.Standby() tango_context.device.Standby()
def test_Disable(self, tango_context):
"""
Test for Disable command
"""
assert tango_context.device.state() == DevState.OFF
tango_context.device.Disable()
assert tango_context.device.state() == DevState.DISABLE
with pytest.raises(DevFailed):
tango_context.device.Disable()
def test_Standby(self, tango_context):
"""
Test for Standby command
"""
assert tango_context.device.state() == DevState.OFF
tango_context.device.Standby()
assert tango_context.device.state() == DevState.STANDBY
with pytest.raises(DevFailed):
tango_context.device.Standby()
def test_Off(self, tango_context, tango_change_event_helper): def test_Off(self, tango_context, tango_change_event_helper):
""" """
Test for Off command Test for Off command
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment