Skip to content

Commit d1410dc

Browse files
committed
replace test variables with generic ones
1 parent 7159256 commit d1410dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tailwindcss/src/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5820,7 +5820,7 @@ describe('`color-mix(…)` polyfill', () => {
58205820
@tailwind utilities;
58215821
@utility color-mix-in-supports-block {
58225822
@supports (color: color-mix(in lab, red, red)) {
5823-
background: color-mix(in oklab, var(--tw-gradient-from), var(--tw-gradient-to) 0%);
5823+
background: color-mix(in oklab, var(--color-1), var(--color-2) 0%);
58245824
}
58255825
}
58265826
`,
@@ -5829,7 +5829,7 @@ describe('`color-mix(…)` polyfill', () => {
58295829
).resolves.toMatchInlineSnapshot(`
58305830
".color-mix-in-supports-block {
58315831
@supports (color: color-mix(in lab, red, red)) {
5832-
background: color-mix(in oklab, var(--tw-gradient-from), var(--tw-gradient-to) 0%);
5832+
background: color-mix(in oklab, var(--color-1), var(--color-2) 0%);
58335833
}
58345834
}"
58355835
`)

0 commit comments

Comments
 (0)