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