1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00

Using ghcr.io/home-assistant + fallback (#2959)

This commit is contained in:
Pascal Vizeli
2021-06-14 20:07:44 +02:00
committed by GitHub
parent adf355e54f
commit a4a0b43d91
6 changed files with 7 additions and 7 deletions

View File

@@ -34,7 +34,7 @@ async def mock_async_return_true() -> bool:
@pytest.fixture
def docker() -> DockerAPI:
"""Mock DockerAPI."""
images = [MagicMock(tags=["homeassistant/amd64-hassio-supervisor:latest"])]
images = [MagicMock(tags=["ghcr.io/home-assistant/amd64-hassio-supervisor:latest"])]
with patch("docker.DockerClient", return_value=MagicMock()), patch(
"supervisor.docker.DockerAPI.images", return_value=MagicMock()