From 0dce02f16f4a9d2dc039dac0b1222c82bd789354 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Hellander?= Date: Sun, 23 Mar 2025 09:26:53 +0100 Subject: [PATCH] Fix typo in TestMethodAttribute documentation --- .../Attributes/TestMethod/TestMethodAttribute.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/TestFramework/TestFramework/Attributes/TestMethod/TestMethodAttribute.cs b/src/TestFramework/TestFramework/Attributes/TestMethod/TestMethodAttribute.cs index 319fcec986..739cde1827 100644 --- a/src/TestFramework/TestFramework/Attributes/TestMethod/TestMethodAttribute.cs +++ b/src/TestFramework/TestFramework/Attributes/TestMethod/TestMethodAttribute.cs @@ -10,7 +10,7 @@ namespace Microsoft.VisualStudio.TestTools.UnitTesting; /// /// /// -/// When using other attributes like or , it +/// When using other attributes like or , /// the use of is still required. /// /// @@ -40,9 +40,7 @@ public TestMethodAttribute() /// /// Initializes a new instance of the class. /// - /// - /// Display name for the test. - /// + /// Display name for the test. public TestMethodAttribute(string? displayName) => DisplayName = displayName; ///