Fixing unit tests after rename

This commit is contained in:
brydon1 2023-06-28 12:06:32 -04:00
parent 9eb2892e02
commit 8c2bea9939

View file

@ -159,7 +159,7 @@ describe("Store", () => {
const noCompensation = getRandomBoolean(); const noCompensation = getRandomBoolean();
const deductible = getRandomInt(1,500); const deductible = getRandomInt(1,500);
const vehicle = { const vehicle = {
noCompensation: noCompensation, noCoverage: noCompensation,
deductible: deductible, deductible: deductible,
repairWaived: true repairWaived: true
}; };
@ -184,7 +184,7 @@ describe("Store", () => {
const noCompensation = getRandomBoolean(); const noCompensation = getRandomBoolean();
const deductible = getRandomInt(1,500); const deductible = getRandomInt(1,500);
const vehicle = { const vehicle = {
noCompensation: noCompensation, noCoverage: noCompensation,
deductible: deductible, deductible: deductible,
repairWaived: false repairWaived: false
}; };