From a694caa800142ae4551808b1760d21d48f46765d Mon Sep 17 00:00:00 2001 From: Mikel Blanchard Date: Fri, 16 Dec 2022 10:31:00 -0800 Subject: [PATCH] Fix test broken by log message format change. --- src/Servers/test/FunctionalTests/HelloWorldTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Servers/test/FunctionalTests/HelloWorldTest.cs b/src/Servers/test/FunctionalTests/HelloWorldTest.cs index 99bc84d0ff71..309d66bb2040 100644 --- a/src/Servers/test/FunctionalTests/HelloWorldTest.cs +++ b/src/Servers/test/FunctionalTests/HelloWorldTest.cs @@ -160,7 +160,7 @@ public async Task ApplicationException(TestVariant variant) } // Output should contain the ApplicationException and the 500 status code Assert.Contains("System.ApplicationException: Application exception", output); - Assert.Contains("/throwexception - - - 500", output); + Assert.Contains("/throwexception - 500", output); } } }