Skip to content
This repository has been archived by the owner on Jun 3, 2022. It is now read-only.

Commit

Permalink
Fixes colorVariable test.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscox committed Feb 27, 2017
1 parent 3aa4462 commit 177bdb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/__tests__/ColorVariable_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe("ColorVariable", () => {

const updatedVariable = callbackSpy.args[0][0];
expect(callbackSpy).to.have.been.calledOnce.and.calledWith(variable);
expect(updatedVariable.selectedValue).to.equal(newValue);
expect(updatedVariable.selectedValue.toLowerCase()).to.equal(newValue.toLowerCase());
});

it("should clone properly", () => {
Expand Down

0 comments on commit 177bdb5

Please sign in to comment.