Rename zwave_mqtt to ozw (#1729)

This commit is contained in:
Pascal Vizeli 2020-05-19 16:54:50 +02:00 committed by GitHub
parent 22c8cda0d7
commit 796f9a203e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -10,8 +10,7 @@ def test_good_config():
"""Test good zwave mqtt config."""
valid_discovery_config(
"zwave_mqtt",
{"host": "test", "port": 3812, "username": "bla", "password": "test"},
"ozw", {"host": "test", "port": 3812, "username": "bla", "password": "test"},
)
@ -19,6 +18,4 @@ def test_bad_config():
"""Test good zwave mqtt config."""
with pytest.raises(vol.Invalid):
valid_discovery_config(
"zwave_mqtt", {"host": "test", "username": "bla", "ssl": True}
)
valid_discovery_config("ozw", {"host": "test", "username": "bla", "ssl": True})