1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Remove invalidation_version from deprecated (#44156)

* Remove invalidation_version from deprecated. We don't follow up and just hurts releases

* Revert change to ZHA
This commit is contained in:
Paulus Schoutsen
2020-12-12 22:24:16 +01:00
committed by GitHub
parent 76d6b55ff4
commit 594e905742
20 changed files with 25 additions and 234 deletions

View File

@@ -1116,7 +1116,7 @@ async def test_component_config_exceptions(hass, caplog):
("non_existing", vol.Schema({"zone": int}), None),
("zone", vol.Schema({}), None),
("plex", vol.Schema(vol.All({"plex": {"host": str}})), "dict"),
("openuv", cv.deprecated("openuv", invalidation_version="0.115"), None),
("openuv", cv.deprecated("openuv"), None),
],
)
def test_identify_config_schema(domain, schema, expected):