From 15c6dad1142e235ba9e37a4cb08dab05dfb6720c Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 13 Jul 2023 09:57:51 -0700 Subject: [PATCH] chore: test cleanup (#24211) The functionality was fixed in https://github.com/microsoft/playwright/pull/24201. Fixes #24201 --- tests/library/browsercontext-fetch.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/library/browsercontext-fetch.spec.ts b/tests/library/browsercontext-fetch.spec.ts index 20f7cacda8..a44ab8a941 100644 --- a/tests/library/browsercontext-fetch.spec.ts +++ b/tests/library/browsercontext-fetch.spec.ts @@ -218,7 +218,7 @@ it('should add cookies from Set-Cookie header', async ({ context, page, server } expect((await page.evaluate(() => document.cookie)).split(';').map(s => s.trim()).sort()).toEqual(['foo=bar', 'session=value']); }); -it('should preserve cookie order from Set-Cookie header', async ({ context, page, server, browserName, isLinux }) => { +it('should preserve cookie order from Set-Cookie header', async ({ context, page, server }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23390' }); server.setRoute('/setcookie.html', (req, res) => { res.setHeader('Set-Cookie', ['cookie.0=foo', 'cookie.1=bar']);