From 5ad75f92f72f56e4c5d763850731cad53936195b Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Tue, 2 May 2023 09:14:57 -0700 Subject: [PATCH] test: unflake basic timeout test (#22745) --- tests/playwright-test/basic.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright-test/basic.spec.ts b/tests/playwright-test/basic.spec.ts index cd56a0fd2d..36663f02fd 100644 --- a/tests/playwright-test/basic.spec.ts +++ b/tests/playwright-test/basic.spec.ts @@ -43,7 +43,7 @@ test('should timeout', async ({ runInlineTest }) => { expect(exitCode).toBe(1); expect(passed).toBe(0); expect(failed).toBe(1); - expect(output).toContain('Test timeout of 100ms exceeded.'); + expect(output).toContain('Test timeout of 100ms exceeded'); }); test('should succeed', async ({ runInlineTest }) => {