remove dependency on upcoming testng-remote.jar (IDEA-150806)

This commit is contained in:
Anna Kozlova
2016-01-26 17:30:03 +03:00
parent 1b3ee14efb
commit c469bc34ef
@@ -116,8 +116,7 @@ public class RemoteTestNGStarter {
}
final IDEARemoteTestNG testNG = new IDEARemoteTestNG(param);
CommandLineArgs cla = new CommandLineArgs();
RemoteArgs ra = new RemoteArgs();
new JCommander(Arrays.asList(cla, ra), (String[])resultArgs.toArray(new String[resultArgs.size()]));
new JCommander(Collections.singletonList(cla), (String[])resultArgs.toArray(new String[resultArgs.size()]));
testNG.configure(cla);
testNG.run();
return;