From 303cbf3642f8b3a3f5790661e8022756e7dc0251 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 12 Nov 2023 18:11:41 +1000 Subject: [PATCH] Fix tests --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index d575b526..6849f794 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -172,8 +172,8 @@ async def client(base_client: AsyncClient) -> AsyncClient: @pytest_asyncio.fixture async def compute_client(base_client: AsyncClient) -> AsyncClient: - # default compute username is 'admin' - base64_credentials = base64.b64encode(b"admin:").decode("ascii") + # default compute username is 'gns3' + base64_credentials = base64.b64encode(b"gns3:").decode("ascii") base_client.headers = { **base_client.headers, "Authorization": f"Basic {base64_credentials}",