From 281945c8b6b22b05960622f1fa2c7e8d48a1f9db Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Fri, 4 Mar 2022 17:09:18 -0800 Subject: [PATCH] test: typo fix (#12531) --- tests/browsercontext-fetch.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/browsercontext-fetch.spec.ts b/tests/browsercontext-fetch.spec.ts index 3dd1991601..344e44a388 100644 --- a/tests/browsercontext-fetch.spec.ts +++ b/tests/browsercontext-fetch.spec.ts @@ -570,7 +570,7 @@ it('should support gzip compression', async function({ context, server }) { expect(await response.text()).toBe('Hello, world!'); }); -it('should throw informatibe error on corrupted gzip body', async function({ context, server }) { +it('should throw informative error on corrupted gzip body', async function({ context, server }) { server.setRoute('/corrupted', (req, res) => { res.writeHead(200, { 'Content-Encoding': 'gzip', @@ -604,7 +604,7 @@ it('should support brotli compression', async function({ context, server }) { expect(await response.text()).toBe('Hello, world!'); }); -it('should throw informatibe error on corrupted brotli body', async function({ context, server }) { +it('should throw informative error on corrupted brotli body', async function({ context, server }) { server.setRoute('/corrupted', (req, res) => { res.writeHead(200, { 'Content-Encoding': 'br', @@ -638,7 +638,7 @@ it('should support deflate compression', async function({ context, server }) { expect(await response.text()).toBe('Hello, world!'); }); -it('should throw informatibe error on corrupted deflate body', async function({ context, server }) { +it('should throw informative error on corrupted deflate body', async function({ context, server }) { server.setRoute('/corrupted', (req, res) => { res.writeHead(200, { 'Content-Encoding': 'deflate',