Move openhardwaremonitor fixture to integration tests (#112982)

* Move openhardwaremonitor fixture

* Update tests/components/openhardwaremonitor/test_sensor.py

---------

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
This commit is contained in:
Joost Lekkerkerker 2024-03-11 08:30:22 +01:00 committed by GitHub
parent 3387892f59
commit b914ac3185
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ async def test_setup(hass: HomeAssistant, requests_mock: requests_mock.Mocker) -
requests_mock.get( requests_mock.get(
"http://localhost:8085/data.json", "http://localhost:8085/data.json",
text=load_fixture("openhardwaremonitor.json"), text=load_fixture("openhardwaremonitor.json", "openhardwaremonitor"),
) )
await async_setup_component(hass, "sensor", config) await async_setup_component(hass, "sensor", config)