From 5e0e426d8038a4963374f29fd3dc42c33e517bd4 Mon Sep 17 00:00:00 2001 From: Youssef1313 Date: Fri, 20 Dec 2024 12:23:01 +0100 Subject: [PATCH] Fix one more dynamic data test --- .../Parameterized tests/DynamicDataTests.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs b/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs index f88dae7f1b..7549c4c584 100644 --- a/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs +++ b/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs @@ -2,6 +2,7 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Immutable; +using System.Diagnostics; using Microsoft.MSTestV2.CLIAutomation; using Microsoft.VisualStudio.TestPlatform.ObjectModel; @@ -59,9 +60,9 @@ public void ExecuteDynamicDataTests() "MethodWithOverload (\"2\",1)", "MethodWithOverload (1,\"0\")", "MethodWithOverload (2,\"2\")", - "DynamicDataTest_SimpleCollection(0)", - "DynamicDataTest_SimpleCollection(2)", - "DynamicDataTest_SimpleCollection(4)"); + "DynamicDataTest_SimpleCollection (0)", + "DynamicDataTest_SimpleCollection (2)", + "DynamicDataTest_SimpleCollection (4)"); VerifyE2E.FailedTestCount(testResults, 0); }