Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Oct 21, 2024
1 parent c89cc95 commit bda7192
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ routes.set('/backend/timeout', async () => {
routes.set('/implicit-dynamic-backend/dynamic-backends-enabled', async () => {
allowDynamicBackends(true);
await assertResolves(async () => {
const res = await fetch('https://http-me.glitch.me/headers');
const backend = Backend.fromName(res.backend);
await fetch('https://http-me.glitch.me/headers');
const backend = Backend.fromName('http-me.glitch.me');
strictEqual(backend.isSSL, true);
});
await assertResolves(() => fetch('https://www.fastly.com'));
Expand Down

0 comments on commit bda7192

Please sign in to comment.