fix failing ordered stop test due to missing system id

This commit is contained in:
2025-01-29 00:08:56 -08:00
parent f1579904c7
commit 23ee9ce06b

View File

@@ -33,6 +33,7 @@ describe("OrderedStopResolvers", () => {
mockStops = generateMockStops();
await Promise.all(mockStops.map(async (mockStop) => {
mockStop.systemId = mockSystem.id;
await repository.addOrUpdateStop(mockStop);
}));
});