Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
lilnasy authored and astrobot-houston committed Mar 13, 2024
1 parent 055fe29 commit f456fed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/test/redirects.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit f456fed

Please sign in to comment.