From e4a1c18a629938da64fe1ff2c4a0ed1c59a5bd57 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:09:40 -0600 Subject: [PATCH] fix: remove unneeded whitespace --- packages/playwright/src/worker/testTracing.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/playwright/src/worker/testTracing.ts b/packages/playwright/src/worker/testTracing.ts index c03e89f1a6..bde5cd47a5 100644 --- a/packages/playwright/src/worker/testTracing.ts +++ b/packages/playwright/src/worker/testTracing.ts @@ -54,7 +54,6 @@ export class TestTracing { if (this._options?.mode === 'on-first-retry' && this._testInfo.retry === 1) return true; if (this._options?.mode === 'on-all-retries' && this._testInfo.retry > 0) return true; if (this._options?.mode === 'retain-on-first-failure' && this._testInfo.retry === 0) return true; - return false; }