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