Skip to content

Commit 99d3fb8

Browse files
committed
Change returned format of color for colorscale test
1 parent c53a00a commit 99d3fb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jasmine/tests/colorscale_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,9 +389,9 @@ describe('Test colorscale:', function() {
389389
color4 = scaleFunction(4);
390390

391391
expect(color1).toEqual(color2);
392-
expect(color1).toEqual('#050aac');
392+
expect(color1).toEqual('rgb(5, 10, 172)');
393393
expect(color3).toEqual(color4);
394-
expect(color4).toEqual('#b20a1c');
394+
expect(color4).toEqual('rgb(178, 10, 28)');
395395
});
396396
});
397397
});

0 commit comments

Comments
 (0)