Skip to content

Commit

Permalink
adjust tests to code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Sep 22, 2023
1 parent 33afb92 commit 8ddf9d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/SelectionInterface.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 8ddf9d2

Please sign in to comment.