From b54845580539a5b3d89a8737775318334eba7b0b Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Thu, 11 Dec 2025 13:53:06 -0500 Subject: [PATCH] unit test fix --- src/store/store.spec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 087187e5..55898656 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -1930,6 +1930,8 @@ describe('Store', () => { store.order.vehicle.carId = carId; const zipCode = getRandomString(6, 6); const radius = getRandomInt(5, 100); + const isBigTruck = false; + store.order.vehicle.isBigTruck = isBigTruck; const expectedEndpoint = [ endpoints.GetProviders.url, zipCode, @@ -1937,7 +1939,8 @@ describe('Store', () => { radius, parentAccountNumber, 'false', - carId + carId, + isBigTruck ].join('/'); // Act