Skip to content

Commit

Permalink
Fixed: Verbose levels specified in suites is now respected again
Browse files Browse the repository at this point in the history
  • Loading branch information
Cédric Beust committed Sep 5, 2011
1 parent 0a809ad commit fe2ca5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Fixed: @AfterClass not being run in some subclassing situations

Eclipse:

Fixed: Verbose levels specified in suites is now respected again
Fixed: Variable substitution in VM arguments is not working properly (svenhoff)

===========================================================================
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/org/testng/remote/RemoteTestNG.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ private static void initAndRun(String[] args, CommandLineArgs cla, RemoteArgs ra
sb.append(s).append(" ");
}
p(sb.toString());
remoteTestNg.setVerbose(1);
} else {
remoteTestNg.setVerbose(0);
// remoteTestNg.setVerbose(1);
// } else {
// remoteTestNg.setVerbose(0);
}
validateCommandLineParameters(cla);
remoteTestNg.run();
Expand Down

0 comments on commit fe2ca5f

Please sign in to comment.