fix incorrect value in test

This commit is contained in:
2025-01-07 15:30:12 -08:00
parent 535c24b2e4
commit 0f7f02239c

View File

@@ -212,7 +212,7 @@ describe("getEtaForShuttleAndStopId", () => {
stopId: "177666", stopId: "177666",
}; };
expect(result?.secondsRemaining).toEqual("5577"); expect(result?.secondsRemaining).toEqual(587);
expect(result?.millisecondsSinceEpoch).toBeDefined(); expect(result?.millisecondsSinceEpoch).toBeDefined();
}); });