diff options
author | 2024-03-13 09:28:54 +0000 | |
---|---|---|
committer | 2024-03-13 09:28:54 +0000 | |
commit | f456fed23cfffd5b7d09d1b541f858a90f5ea20f (patch) | |
tree | ce2ad96391c7fe13024d94511fa05aaf017da0dc | |
parent | 055fe293c6702dd27bcd6c4f59297c6d4385abb1 (diff) | |
download | astro-f456fed23cfffd5b7d09d1b541f858a90f5ea20f.tar.gz astro-f456fed23cfffd5b7d09d1b541f858a90f5ea20f.tar.zst astro-f456fed23cfffd5b7d09d1b541f858a90f5ea20f.zip |
[ci] format
-rw-r--r-- | packages/astro/test/redirects.test.js | 4 |
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 () => { |