Fix for assumed state in command_line (#5578)

* Bug fix for assumed state in command_line

* command line

* command line

* command line

* command line test
This commit is contained in:
Daniel Høyer Iversen 2017-01-27 06:41:30 +01:00 committed by Paulus Schoutsen
parent fb49c588e5
commit a465a45588
2 changed files with 3 additions and 3 deletions

View file

@ -124,7 +124,7 @@ class CommandSwitch(SwitchDevice):
@property
def assumed_state(self):
"""Return true if we do optimistic updates."""
return self._command_state is False
return self._command_state is None
def _query_state(self):
"""Query for state."""

View file

@ -159,7 +159,7 @@ class TestCommandSwitch(unittest.TestCase):
state = self.hass.states.get('switch.test')
self.assertEqual(STATE_ON, state.state)
def test_assumed_state_should_be_true_if_command_state_is_false(self):
def test_assumed_state_should_be_true_if_command_state_is_none(self):
"""Test with state value."""
# args: hass, device_name, friendly_name, command_on, command_off,
# command_state, value_template
@ -169,7 +169,7 @@ class TestCommandSwitch(unittest.TestCase):
"Test friendly name!",
"echo 'on command'",
"echo 'off command'",
False,
None,
None,
]