Skip raw encoding test for cover (#63322)

This commit is contained in:
Jan Bouwhuis 2022-01-03 17:08:28 +01:00 committed by GitHub
parent f456f68dff
commit 86ed091dbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3173,8 +3173,8 @@ async def test_reloadable(hass, mqtt_mock, caplog, tmp_path):
[ [
("state_topic", "open", None, None), ("state_topic", "open", None, None),
("state_topic", "closing", None, None), ("state_topic", "closing", None, None),
("position_topic", "40.0", "current_position", 40.0), ("position_topic", "40", "current_position", 40),
("tilt_status_topic", "60.0", "current_tilt_position", 60.0), ("tilt_status_topic", "60", "current_tilt_position", 60),
], ],
) )
async def test_encoding_subscribable_topics( async def test_encoding_subscribable_topics(
@ -3191,4 +3191,5 @@ async def test_encoding_subscribable_topics(
value, value,
attribute, attribute,
attribute_value, attribute_value,
skip_raw_test=True,
) )