summaryrefslogtreecommitdiff
path: root/packages/astro/test/css-order-import.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/css-order-import.test.js')
-rw-r--r--packages/astro/test/css-order-import.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/css-order-import.test.js b/packages/astro/test/css-order-import.test.js
index 9b67f1580..f8a9cf5b2 100644
--- a/packages/astro/test/css-order-import.test.js
+++ b/packages/astro/test/css-order-import.test.js
@@ -147,9 +147,9 @@ describe('CSS ordering - import order', () => {
const content = await Promise.all(
getLinks(html).map((href) => getLinkContent(href, fixture)),
);
- let [link1, , link3] = content;
+ let [link1, link2] = content;
assert.ok(link1.css.includes('f0f8ff')); // aliceblue minified
- assert.ok(link3.css.includes('ff0')); // yellow minified
+ assert.ok(link2.css.includes('ff0')); // yellow minified
});
});
});