Use asynctest-mock in most places (#35109)

* Use asynctest-mock in most places

* Fix broken patch in pilight
This commit is contained in:
Paulus Schoutsen 2020-05-03 11:27:19 -07:00 committed by GitHub
parent e7fc886992
commit 2af984917e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
319 changed files with 456 additions and 522 deletions

View file

@ -1,6 +1,5 @@
"""The tests for the Netgear Arlo sensors."""
from collections import namedtuple
from unittest.mock import MagicMock, patch
import pytest
@ -12,6 +11,8 @@ from homeassistant.const import (
UNIT_PERCENTAGE,
)
from tests.async_mock import patch
def _get_named_tuple(input_dict):
return namedtuple("Struct", input_dict.keys())(*input_dict.values())
@ -94,7 +95,7 @@ def sensor_with_hass_data(default_sensor, hass):
def mock_dispatch():
"""Mock the dispatcher connect method."""
target = "homeassistant.components.arlo.sensor.async_dispatcher_connect"
with patch(target, MagicMock()) as _mock:
with patch(target) as _mock:
yield _mock