Skip to content

Commit

Permalink
Update MSTestSettings.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Dec 21, 2024
1 parent 9d9aa05 commit dfa09e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapter/MSTest.TestAdapter/MSTestSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit dfa09e2

Please sign in to comment.