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

Change automation action config keys

This commit is contained in:
Paulus Schoutsen
2015-09-19 08:43:56 -07:00
parent 6c1f44242c
commit dd4e1cbd1d
8 changed files with 90 additions and 69 deletions

View File

@@ -75,7 +75,7 @@ class TestAutomationEvent(unittest.TestCase):
'event_type': 'test_event',
},
'action': {
'execute_service': 'test.automation',
'service': 'test.automation',
}
}
}))
@@ -93,7 +93,7 @@ class TestAutomationEvent(unittest.TestCase):
'event_data': {'some_attr': 'some_value'}
},
'action': {
'execute_service': 'test.automation',
'service': 'test.automation',
}
}
}))
@@ -111,7 +111,7 @@ class TestAutomationEvent(unittest.TestCase):
'event_data': {'some_attr': 'some_value'}
},
'action': {
'execute_service': 'test.automation',
'service': 'test.automation',
}
}
}))