From 8c2bea9939154aaafc150505d4834aa7b6fc7e33 Mon Sep 17 00:00:00 2001 From: brydon1 Date: Wed, 28 Jun 2023 12:06:32 -0400 Subject: [PATCH] Fixing unit tests after rename --- src/store/store.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 88330c6a..1ac4e2d1 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -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 };