Skip to content

Commit

Permalink
Disabling debug output when running the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaroslav Tulach committed Mar 29, 2020
1 parent 4246a0f commit f2ec112
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static Fn.Presenter collect(
Fn.Presenter[] browserPresenter = { null };
Fn[] updateName = { null };
CountDownLatch cdl = new CountDownLatch(1);
final Browser.Config cfg = new Browser.Config().debug(true);
final Browser.Config cfg = new Browser.Config(); // .debug(true);
final BrowserBuilder bb = BrowserBuilder.newBrowser(new Browser(browserName, cfg, serverProvider)).
loadPage("empty.html").
loadFinished(() -> {
Expand Down

0 comments on commit f2ec112

Please sign in to comment.