From dfa09e2cc37120121896e7186b9ebc8ee10331a0 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Sat, 21 Dec 2024 17:57:01 +1100 Subject: [PATCH] Update MSTestSettings.cs --- src/Adapter/MSTest.TestAdapter/MSTestSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Adapter/MSTest.TestAdapter/MSTestSettings.cs b/src/Adapter/MSTest.TestAdapter/MSTestSettings.cs index 1be800f802..b2b2d7cb3b 100644 --- a/src/Adapter/MSTest.TestAdapter/MSTestSettings.cs +++ b/src/Adapter/MSTest.TestAdapter/MSTestSettings.cs @@ -1029,7 +1029,7 @@ internal static void SetSettingsFromConfig(IConfiguration configuration, IMessag if (configuration["mstest:parallelism:scope"] is string value) { value = value.Equals("class", StringComparison.OrdinalIgnoreCase) ? "ClassLevel" - : value.Equals("methood", StringComparison.OrdinalIgnoreCase) ? "MethodLevel" : value; + : value.Equals("method", StringComparison.OrdinalIgnoreCase) ? "MethodLevel" : value; if (TryParseEnum(value, out ExecutionScope scope)) { settings.ParallelizationScope = scope;