change all millisecond references into Dates

This commit is contained in:
2025-04-29 17:05:23 -07:00
parent b58babc7ea
commit 1c7ee9fbc3
9 changed files with 51 additions and 51 deletions

View File

@@ -59,7 +59,7 @@ describe("ChapmanApiBasedParkingRepositoryLoader", () => {
},
name: "Anderson Structure",
id: "",
updatedTime: Date.now(),
updatedTime: new Date(),
},
{
address: "200 W Sycamore Ave, Orange, CA 92866-1053",
@@ -71,7 +71,7 @@ describe("ChapmanApiBasedParkingRepositoryLoader", () => {
},
name: "Barrera",
id: "",
updatedTime: Date.now(),
updatedTime: new Date(),
}
];
expectedStructures[0].id = ChapmanApiBasedParkingRepositoryLoader.generateId(expectedStructures[0].address);