diff --git a/src/Utilities.UnitTests/ToolTask_Tests.cs b/src/Utilities.UnitTests/ToolTask_Tests.cs index ad9543dd93c..7c7956d12ce 100644 --- a/src/Utilities.UnitTests/ToolTask_Tests.cs +++ b/src/Utilities.UnitTests/ToolTask_Tests.cs @@ -838,7 +838,7 @@ protected override string GenerateCommandLineCommands() /// predefined amount of time. The first execution may time out, but all following ones won't. It is expected /// that all following executions return success. /// - [Theory (Skip = "https://github.com/dotnet/msbuild/issues/8750")] + [Theory(Skip = "https://github.com/dotnet/msbuild/issues/8750")] [InlineData(1, 1, 1, -1)] // Normal case, no repeat. [InlineData(3, 1, 1, -1)] // Repeat without timeout. [InlineData(3, 10000, 1, 1000)] // Repeat with timeout.