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

@@ -77,7 +77,7 @@ class TestAutomationState(unittest.TestCase):
'topic': 'test-topic'
},
'action': {
'execute_service': 'test.automation'
'service': 'test.automation'
}
}
}))
@@ -95,7 +95,7 @@ class TestAutomationState(unittest.TestCase):
'payload': 'hello'
},
'action': {
'execute_service': 'test.automation'
'service': 'test.automation'
}
}
}))
@@ -113,7 +113,7 @@ class TestAutomationState(unittest.TestCase):
'payload': 'hello'
},
'action': {
'execute_service': 'test.automation'
'service': 'test.automation'
}
}
}))