From 1fbb66d739f7dcf953f6547c2a6f0068aca832e1 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Wed, 20 Nov 2024 09:34:41 +0100 Subject: [PATCH] fix test --- tests/playwright-test/reporter-html.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright-test/reporter-html.spec.ts b/tests/playwright-test/reporter-html.spec.ts index 9d9584b5f8..dc1e3759e5 100644 --- a/tests/playwright-test/reporter-html.spec.ts +++ b/tests/playwright-test/reporter-html.spec.ts @@ -933,7 +933,7 @@ for (const useIntermediateMergeReport of [true, false] as const) { await page.waitForURL(url => { const navState = new URLSearchParams(url.hash.slice(1)); - return navState.get('attachment') === 'foo'; + return navState.get('anchor') === 'attachment-foo'; }); });