remove async label from test server construction of context

This commit is contained in:
2025-04-06 14:40:08 -07:00
parent d95d112bf2
commit c32dcb9610

View File

@@ -37,7 +37,7 @@ export function setupTestServerContext() {
beforeEach(() => { beforeEach(() => {
context.systems = systems; context.systems = systems;
context.findSystemById = async (_: string) => systems[0]; context.findSystemById = (_: string) => systems[0];
}); });
return context as ServerContext; return context as ServerContext;