Replace assert_lists_same with pytest_unordered in integrations n-s (#94902)

This commit is contained in:
Erik Montnemery 2023-06-20 20:23:14 +02:00 committed by GitHub
parent 6a29ed8caa
commit eba04824a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 58 additions and 57 deletions

View file

@ -1,5 +1,6 @@
"""The test for remote device automation."""
import pytest
from pytest_unordered import unordered
import homeassistant.components.automation as automation
from homeassistant.components.device_automation import DeviceAutomationType
@ -12,7 +13,6 @@ from homeassistant.setup import async_setup_component
from tests.common import (
MockConfigEntry,
assert_lists_same,
async_get_device_automations,
async_mock_service,
)
@ -57,7 +57,7 @@ async def test_get_actions(
actions = await async_get_device_automations(
hass, DeviceAutomationType.ACTION, device_entry.id
)
assert_lists_same(actions, expected_actions)
assert actions == unordered(expected_actions)
@pytest.mark.parametrize(
@ -105,7 +105,7 @@ async def test_get_actions_hidden_auxiliary(
actions = await async_get_device_automations(
hass, DeviceAutomationType.ACTION, device_entry.id
)
assert_lists_same(actions, expected_actions)
assert actions == unordered(expected_actions)
async def test_action(