summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/redirects.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/redirects.test.js b/packages/astro/test/redirects.test.js
index ffb7b242e..4e722379c 100644
--- a/packages/astro/test/redirects.test.js
+++ b/packages/astro/test/redirects.test.js
@@ -248,9 +248,9 @@ describe('Astro.redirect', () => {
it('performs dynamic redirects with special characters', async () => {
// encodeURI("/more/old/’")
- const response = await fixture.fetch("/more/old/%E2%80%99", { redirect: 'manual' });
+ const response = await fixture.fetch('/more/old/%E2%80%99', { redirect: 'manual' });
assert.equal(response.status, 301);
- assert.equal(response.headers.get('Location'), "/more/%E2%80%99");
+ assert.equal(response.headers.get('Location'), '/more/%E2%80%99');
});
it('performs dynamic redirects with multiple params', async () => {