1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Fix for see service attributes (#4023)

This commit is contained in:
Bart274
2016-10-25 10:59:20 +02:00
committed by Johann Kellerman
parent 89e8fb4066
commit 53ea926292
2 changed files with 5 additions and 3 deletions

View File

@@ -283,7 +283,10 @@ class TestComponentsDeviceTracker(unittest.TestCase):
'dev_id': 'some_device',
'host_name': 'example.com',
'location_name': 'Work',
'gps': [.3, .8]
'gps': [.3, .8],
'attributes': {
'test': 'test'
}
}
device_tracker.see(self.hass, **params)
self.hass.block_till_done()