From 2fb7ace7fe08a9910386d6e5670ef968b5332d4d Mon Sep 17 00:00:00 2001 From: LTRData Date: Sun, 24 Nov 2024 12:55:10 +0100 Subject: [PATCH] Fixed test attribute typo --- Tests/LibraryTests/WindowsOnlyTheoryAttribute.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibraryTests/WindowsOnlyTheoryAttribute.cs b/Tests/LibraryTests/WindowsOnlyTheoryAttribute.cs index 4cab2ba9b..ba5e3b229 100644 --- a/Tests/LibraryTests/WindowsOnlyTheoryAttribute.cs +++ b/Tests/LibraryTests/WindowsOnlyTheoryAttribute.cs @@ -40,7 +40,7 @@ public override string Skip return null; #else - return "This test runs on macOS only"; + return "This test runs on Windows only"; #endif } set => throw new NotSupportedException();