update test data for correctness

This commit is contained in:
2025-04-10 16:58:30 -07:00
parent e25a96f704
commit f67e3f13f5

View File

@@ -33,8 +33,8 @@ describe("ChapmanTimedApiBasedParkingRepositoryLoader", () => {
let expectedStructures: IParkingStructure[] = [ let expectedStructures: IParkingStructure[] = [
{ {
address: "300 E Walnut, Orange, CA 92867", address: "300 E Walnut, Orange, CA 92867",
capacity: 211, capacity: 871,
spotsAvailable: 871, spotsAvailable: 211,
coordinates: { coordinates: {
latitude: 33.7945513, latitude: 33.7945513,
longitude: -117.8518707, longitude: -117.8518707,
@@ -43,12 +43,12 @@ describe("ChapmanTimedApiBasedParkingRepositoryLoader", () => {
id: "", id: "",
}, },
{ {
address: "", address: "200 W Sycamore Ave, Orange, CA 92866-1053",
capacity: 0, capacity: 692,
spotsAvailable: 0, spotsAvailable: 282,
coordinates: { coordinates: {
latitude: 0, latitude: 33.792937,
longitude: 0 longitude: -117.854782
}, },
name: "Barrera", name: "Barrera",
id: "", id: "",
@@ -69,4 +69,6 @@ describe("ChapmanTimedApiBasedParkingRepositoryLoader", () => {
}); });
}) })
}); });
// TODO: Add timing tests and start/stop methods
}); });