From 8ddf9d257db28925dd95d08904e3dbc41cba939f Mon Sep 17 00:00:00 2001 From: Joe Heffernan Date: Fri, 22 Sep 2023 15:33:24 -0700 Subject: [PATCH] adjust tests to code changes --- src/test/SelectionInterface.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/SelectionInterface.test.ts b/src/test/SelectionInterface.test.ts index 8c02d406..fe352ce9 100644 --- a/src/test/SelectionInterface.test.ts +++ b/src/test/SelectionInterface.test.ts @@ -528,8 +528,8 @@ describe("SelectionInterface module", () => { test("it set the entry color to the 'unmodified' state color if provided", () => { // initially should have no color - expect(uiDisplayDataForA?.color).toEqual(""); - expect(uiDisplayDataForB?.color).toEqual(""); + expect(uiDisplayDataForA?.color).toEqual("#aaaaaa"); + expect(uiDisplayDataForB?.color).toEqual("#bbbbbb"); si.setInitialAgentColors(uiDisplayData, colorList, setColorForIds); expect(uiDisplayDataForA?.color).toEqual("#aaaaaa"); expect(uiDisplayDataForB?.color).toEqual("#bbbbbb");