web: Fix color parsing test

This commit is contained in:
Nathan Adams 2024-06-06 23:46:18 +02:00
parent dabdcd63ad
commit eb26616886
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ describe("Color parsing", function () {
});
it("should parse a valid RRGGBB hex, without hash", function () {
assert.strictEqual(parseColor("#1A2B3C"), 0x1a2b3c);
assert.strictEqual(parseColor("1A2B3C"), 0x1a2b3c);
});
it("should fail with not enough digits", function () {