From afd6cad0769d4fc4047364c41a7b79735ed80a73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 29 Jan 2025 18:36:50 +0100 Subject: [PATCH] Remove extra ; --- .../TranslationLayerTests/EventHandler/DiscoveryEventHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/TranslationLayerTests/EventHandler/DiscoveryEventHandler.cs b/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/TranslationLayerTests/EventHandler/DiscoveryEventHandler.cs index 0c3936c0b6..2efac8896f 100644 --- a/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/TranslationLayerTests/EventHandler/DiscoveryEventHandler.cs +++ b/test/Microsoft.TestPlatform.Acceptance.IntegrationTests/TranslationLayerTests/EventHandler/DiscoveryEventHandler.cs @@ -150,7 +150,7 @@ public void HandleLogMessage(TestMessageLevel level, string? message) if (level == TestMessageLevel.Error) { Console.WriteLine($"ERROR:{message}"); - }; + } } public void HandleDiscoveryComplete(DiscoveryCompleteEventArgs discoveryCompleteEventArgs, IEnumerable? lastChunk)