feat: Fix test managers and patch default org id (#2746)

This commit is contained in:
Matthew Zhou
2025-06-10 16:20:36 -07:00
committed by GitHub
parent 883050e761
commit 8ced9e57ba

View File

@@ -2141,7 +2141,7 @@ async def test_list_organizations(server: SyncServer, event_loop):
async def test_create_default_organization(server: SyncServer, event_loop):
await server.organization_manager.create_default_organization_async()
retrieved = await server.organization_manager.get_default_organization_async()
assert retrieved.name == server.organization_manager.DEFAULT_ORG_NAME
assert retrieved.name == DEFAULT_ORG_ID
@pytest.mark.asyncio