From 5e0e426d8038a4963374f29fd3dc42c33e517bd4 Mon Sep 17 00:00:00 2001 From: Youssef1313 Date: Fri, 20 Dec 2024 12:23:01 +0100 Subject: [PATCH 1/2] 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); } From ff3ff42d799ef748c55c57337f0d82fc323b566c Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Fri, 20 Dec 2024 12:23:34 +0100 Subject: [PATCH 2/2] Remove unused using --- .../Parameterized tests/DynamicDataTests.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs b/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs index 7549c4c584..44dc75da83 100644 --- a/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs +++ b/test/IntegrationTests/MSTest.IntegrationTests/Parameterized tests/DynamicDataTests.cs @@ -1,8 +1,7 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // 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;