Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit e8282f0

Browse files
committed
Address PR feedback
1 parent 6ace68d commit e8282f0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Common/tests/System/Diagnostics/RemoteExecutorConsoleApp/RemoteExecutorConsoleApp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace RemoteExecutorConsoleApp
1111
/// <summary>
1212
/// Provides an entry point in a new process that will load a specified method and invoke it.
1313
/// </summary>
14-
static class Program
14+
internal static class Program
1515
{
1616
static int Main(string[] args)
1717
{

src/Common/tests/System/Diagnostics/RemoteExecutorTestBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ private static RemoteInvokeHandle RemoteInvoke(MethodInfo method, string[] args,
9191
{
9292
FileName = HostRunner,
9393
Arguments = TestConsoleApp + " \"" + a.FullName + "\" " + t.FullName + " " + method.Name + " " + string.Join(" ", args),
94-
UseShellExecute = false,
95-
CreateNoWindow = false
94+
UseShellExecute = false
9695
};
9796

9897
// Profilers / code coverage tools doing coverage of the test process set environment

0 commit comments

Comments
 (0)