From e1046b97e6aab5a534ef5688986a1c85fa9c397e Mon Sep 17 00:00:00 2001 From: Adam Wathan <4323180+adamwathan@users.noreply.github.com> Date: Fri, 5 Apr 2024 14:06:29 -0400 Subject: [PATCH] Update tests --- packages/tailwindcss/src/utilities.test.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/tailwindcss/src/utilities.test.ts b/packages/tailwindcss/src/utilities.test.ts index 52a8318d2b8e..2ff35b1cb066 100644 --- a/packages/tailwindcss/src/utilities.test.ts +++ b/packages/tailwindcss/src/utilities.test.ts @@ -5401,26 +5401,26 @@ test('divide-x', () => { ).toMatchInlineSnapshot(` ":where(.divide-x > :not(:last-child)) { border-inline-style: var(--tw-border-style); - border-inline-end-width: calc(1px * var(--tw-divide-x-reverse)); - border-inline-start-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); + border-inline-start-width: calc(1px * var(--tw-divide-x-reverse)); + border-inline-end-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } :where(.divide-x-123 > :not(:last-child)) { border-inline-style: var(--tw-border-style); - border-inline-end-width: calc(123px * var(--tw-divide-x-reverse)); - border-inline-start-width: calc(123px * calc(1 - var(--tw-divide-x-reverse))); + border-inline-start-width: calc(123px * var(--tw-divide-x-reverse)); + border-inline-end-width: calc(123px * calc(1 - var(--tw-divide-x-reverse))); } :where(.divide-x-4 > :not(:last-child)) { border-inline-style: var(--tw-border-style); - border-inline-end-width: calc(4px * var(--tw-divide-x-reverse)); - border-inline-start-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + border-inline-start-width: calc(4px * var(--tw-divide-x-reverse)); + border-inline-end-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } :where(.divide-x-\\[4px\\] > :not(:last-child)) { border-inline-style: var(--tw-border-style); - border-inline-end-width: calc(4px * var(--tw-divide-x-reverse)); - border-inline-start-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); + border-inline-start-width: calc(4px * var(--tw-divide-x-reverse)); + border-inline-end-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } @property --tw-divide-x-reverse { @@ -5456,8 +5456,8 @@ test('divide-x with custom default border width', () => { :where(.divide-x > :not(:last-child)) { border-inline-style: var(--tw-border-style); - border-inline-end-width: calc(2px * var(--tw-divide-x-reverse)); - border-inline-start-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); + border-inline-start-width: calc(2px * var(--tw-divide-x-reverse)); + border-inline-end-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } @property --tw-divide-x-reverse {