From 21e1e940c6c08e177fa84419a24606c5007589c8 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Mon, 10 Jul 2023 17:46:22 -0400 Subject: [PATCH] [wasm][debugger] Fix regex for helix retries when chrome fails to launch --- eng/test-configuration.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/test-configuration.json b/eng/test-configuration.json index 17c8a6362b8267..adea26ddb23335 100644 --- a/eng/test-configuration.json +++ b/eng/test-configuration.json @@ -5,6 +5,6 @@ "retryOnRules": [ { "testAssembly": { "wildcard": "System.Net.*" } }, { "failureMessage": { "regex": ".*Timed out after .* waiting for the browser to be ready.*" } }, - { "failureMessage": { "regex": "System.IO.IOException : Process for .*chrome .* unexpectedly exited.* during startup" } } + { "failureMessage": { "regex": "System.IO.IOException : Process for .*chrome.*unexpectedly exited.* during startup" } } ] }