mirror of
https://github.com/home-assistant/core.git
synced 2025-07-26 06:37:52 +00:00
Adjust json imports in tests (#88248)
This commit is contained in:
parent
b51836a57b
commit
a16e298599
@ -25,9 +25,9 @@ from homeassistant.components.bluetooth.const import (
|
|||||||
UNAVAILABLE_TRACK_SECONDS,
|
UNAVAILABLE_TRACK_SECONDS,
|
||||||
)
|
)
|
||||||
from homeassistant.core import HomeAssistant, callback
|
from homeassistant.core import HomeAssistant, callback
|
||||||
from homeassistant.helpers.json import json_loads
|
|
||||||
from homeassistant.setup import async_setup_component
|
from homeassistant.setup import async_setup_component
|
||||||
import homeassistant.util.dt as dt_util
|
import homeassistant.util.dt as dt_util
|
||||||
|
from homeassistant.util.json import json_loads
|
||||||
|
|
||||||
from . import MockBleakClient, _get_manager, generate_advertisement_data
|
from . import MockBleakClient, _get_manager, generate_advertisement_data
|
||||||
|
|
||||||
|
@ -28,9 +28,9 @@ from homeassistant.components.bluetooth.manager import (
|
|||||||
FALLBACK_MAXIMUM_STALE_ADVERTISEMENT_SECONDS,
|
FALLBACK_MAXIMUM_STALE_ADVERTISEMENT_SECONDS,
|
||||||
)
|
)
|
||||||
from homeassistant.core import HomeAssistant, callback
|
from homeassistant.core import HomeAssistant, callback
|
||||||
from homeassistant.helpers.json import json_loads
|
|
||||||
from homeassistant.setup import async_setup_component
|
from homeassistant.setup import async_setup_component
|
||||||
from homeassistant.util import dt as dt_util
|
from homeassistant.util import dt as dt_util
|
||||||
|
from homeassistant.util.json import json_loads
|
||||||
|
|
||||||
from . import (
|
from . import (
|
||||||
FakeScanner,
|
FakeScanner,
|
||||||
|
@ -8,7 +8,7 @@ from homeassistant.components.homekit.iidmanager import (
|
|||||||
get_iid_storage_filename_for_entry_id,
|
get_iid_storage_filename_for_entry_id,
|
||||||
)
|
)
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.json import json_loads
|
from homeassistant.util.json import json_loads
|
||||||
from homeassistant.util.uuid import random_uuid_hex
|
from homeassistant.util.uuid import random_uuid_hex
|
||||||
|
|
||||||
from tests.common import MockConfigEntry, load_fixture
|
from tests.common import MockConfigEntry, load_fixture
|
||||||
|
@ -46,13 +46,9 @@ from homeassistant.const import (
|
|||||||
MAX_LENGTH_STATE_STATE,
|
MAX_LENGTH_STATE_STATE,
|
||||||
)
|
)
|
||||||
from homeassistant.core import Context, Event, EventOrigin, State, split_entity_id
|
from homeassistant.core import Context, Event, EventOrigin, State, split_entity_id
|
||||||
from homeassistant.helpers.json import (
|
from homeassistant.helpers.json import JSON_DUMP, json_bytes
|
||||||
JSON_DECODE_EXCEPTIONS,
|
|
||||||
JSON_DUMP,
|
|
||||||
json_bytes,
|
|
||||||
json_loads,
|
|
||||||
)
|
|
||||||
import homeassistant.util.dt as dt_util
|
import homeassistant.util.dt as dt_util
|
||||||
|
from homeassistant.util.json import JSON_DECODE_EXCEPTIONS, json_loads
|
||||||
|
|
||||||
ALL_DOMAIN_EXCLUDE_ATTRS = {ATTR_ATTRIBUTION, ATTR_RESTORED, ATTR_SUPPORTED_FEATURES}
|
ALL_DOMAIN_EXCLUDE_ATTRS = {ATTR_ATTRIBUTION, ATTR_RESTORED, ATTR_SUPPORTED_FEATURES}
|
||||||
|
|
||||||
|
@ -19,9 +19,9 @@ from homeassistant.core import Context, HomeAssistant, State, callback
|
|||||||
from homeassistant.exceptions import HomeAssistantError
|
from homeassistant.exceptions import HomeAssistantError
|
||||||
from homeassistant.helpers import entity
|
from homeassistant.helpers import entity
|
||||||
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
||||||
from homeassistant.helpers.json import json_loads
|
|
||||||
from homeassistant.loader import async_get_integration
|
from homeassistant.loader import async_get_integration
|
||||||
from homeassistant.setup import DATA_SETUP_TIME, async_setup_component
|
from homeassistant.setup import DATA_SETUP_TIME, async_setup_component
|
||||||
|
from homeassistant.util.json import json_loads
|
||||||
|
|
||||||
from tests.common import MockEntity, MockEntityPlatform, MockUser, async_mock_service
|
from tests.common import MockEntity, MockEntityPlatform, MockUser, async_mock_service
|
||||||
from tests.typing import ClientSessionGenerator, WebSocketGenerator
|
from tests.typing import ClientSessionGenerator, WebSocketGenerator
|
||||||
|
@ -55,10 +55,10 @@ from homeassistant.helpers import (
|
|||||||
issue_registry as ir,
|
issue_registry as ir,
|
||||||
recorder as recorder_helper,
|
recorder as recorder_helper,
|
||||||
)
|
)
|
||||||
from homeassistant.helpers.json import json_loads
|
|
||||||
from homeassistant.helpers.typing import ConfigType
|
from homeassistant.helpers.typing import ConfigType
|
||||||
from homeassistant.setup import async_setup_component
|
from homeassistant.setup import async_setup_component
|
||||||
from homeassistant.util import dt as dt_util, location
|
from homeassistant.util import dt as dt_util, location
|
||||||
|
from homeassistant.util.json import json_loads
|
||||||
|
|
||||||
from .ignore_uncaught_exceptions import IGNORE_UNCAUGHT_EXCEPTIONS
|
from .ignore_uncaught_exceptions import IGNORE_UNCAUGHT_EXCEPTIONS
|
||||||
from .typing import (
|
from .typing import (
|
||||||
|
@ -13,7 +13,8 @@ from multidict import CIMultiDict
|
|||||||
from yarl import URL
|
from yarl import URL
|
||||||
|
|
||||||
from homeassistant.const import EVENT_HOMEASSISTANT_CLOSE
|
from homeassistant.const import EVENT_HOMEASSISTANT_CLOSE
|
||||||
from homeassistant.helpers.json import json_dumps, json_loads
|
from homeassistant.helpers.json import json_dumps
|
||||||
|
from homeassistant.util.json import json_loads
|
||||||
|
|
||||||
RETYPE = type(re.compile(""))
|
RETYPE = type(re.compile(""))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user