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

Rewrite of not a == b occurances (#48132)

This commit is contained in:
Franck Nijhof
2021-03-20 01:27:04 +01:00
committed by GitHub
parent 26bceae99d
commit fb849b81b5
17 changed files with 31 additions and 31 deletions

View File

@@ -360,7 +360,7 @@ async def test_whitelist_no_match(mock_debug, hass):
await hass.async_block_till_done()
debug_log_call = mock_debug.call_args_list[-3]
assert not ("Event pilight_received" in debug_log_call)
assert "Event pilight_received" not in debug_log_call
async def test_call_rate_delay_throttle_enabled(hass):