1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-23 12:29:55 +00:00

mqtt_statestream: Update to append 'state' to topic for future use with mqtt discovery (#9446)

This commit is contained in:
Matt White
2017-09-16 00:05:58 -06:00
committed by Paulus Schoutsen
parent a7bce5f9e6
commit 04bed51277
2 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ class TestMqttStateStream(object):
mock_state_change_event(self.hass, State(e_id, 'on'))
self.hass.block_till_done()
# Make sure 'on' was published to pub/fake/entity
mock_pub.assert_called_with(self.hass, 'pub/fake/entity', 'on', 1,
True)
# Make sure 'on' was published to pub/fake/entity/state
mock_pub.assert_called_with(self.hass, 'pub/fake/entity/state',
'on', 1, True)
assert mock_pub.called