Skip to content

Commit 3a0992e

Browse files
authored
test: fix CI failure caused by newly updated baseline (#328)
1 parent cddbf92 commit 3a0992e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/rules/use-baseline.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -380,18 +380,18 @@ ruleTester.run("use-baseline", rule, {
380380
],
381381
},
382382
{
383-
code: "a { color: color-mix(in hsl, hsl(200 50 80), coral 80%); }",
383+
code: "a { color: light-dark(black, white); }",
384384
errors: [
385385
{
386386
messageId: "notBaselineFunction",
387387
data: {
388-
function: "color-mix",
388+
function: "light-dark",
389389
availability: "widely",
390390
},
391391
line: 1,
392392
column: 12,
393393
endLine: 1,
394-
endColumn: 56,
394+
endColumn: 36,
395395
},
396396
],
397397
},

0 commit comments

Comments
 (0)