Move wsdot fixture to integration test (#112996)

This commit is contained in:
Joost Lekkerkerker 2024-03-10 20:12:29 +01:00 committed by GitHub
parent d531b6e9b7
commit 65e1502b50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ async def test_setup(hass: HomeAssistant, requests_mock: requests_mock.Mocker) -
entities.append(entity)
uri = re.compile(RESOURCE + "*")
requests_mock.get(uri, text=load_fixture("wsdot.json"))
requests_mock.get(uri, text=load_fixture("wsdot/wsdot.json"))
wsdot.setup_platform(hass, config, add_entities)
assert len(entities) == 1
sensor = entities[0]