Skip to content

Commit c5da65e

Browse files
committed
Fix debug info from netcore tests
1 parent b65ebfc commit c5da65e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NetCoreClientUnitTest/ClientRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ private int runClient(ClientType type, String args)
6161
client = "NetCoreConnector";
6262

6363
p.StartInfo.FileName = "dotnet";
64-
Console.WriteLine(p.StartInfo.FileName);
6564
p.StartInfo.Arguments = this.getPath(client) + " " + args;
65+
Console.WriteLine(p.StartInfo.FileName + " " + p.StartInfo.Arguments);
6666
p.StartInfo.RedirectStandardOutput = true;
6767
p.StartInfo.UseShellExecute = false;
6868
p.StartInfo.CreateNoWindow = true;

0 commit comments

Comments
 (0)