Skip to content

Commit 127f992

Browse files
authored
Re-order command-line options for MTP dotnet test (#49362)
1 parent e6168d6 commit 127f992

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Cli/dotnet/Commands/Test/TestCommandParser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,10 @@ private static Command GetTestingPlatformCliCommand()
241241
command.Options.Add(CommonOptions.NoRestoreOption);
242242
command.Options.Add(TestingPlatformOptions.NoBuildOption);
243243
command.Options.Add(TestingPlatformOptions.NoAnsiOption);
244-
command.Options.Add(TestingPlatformOptions.NoLaunchProfileOption);
245-
command.Options.Add(TestingPlatformOptions.NoLaunchProfileArgumentsOption);
246244
command.Options.Add(TestingPlatformOptions.NoProgressOption);
247245
command.Options.Add(TestingPlatformOptions.OutputOption);
246+
command.Options.Add(TestingPlatformOptions.NoLaunchProfileOption);
247+
command.Options.Add(TestingPlatformOptions.NoLaunchProfileArgumentsOption);
248248

249249
return command;
250250
}

0 commit comments

Comments
 (0)