Skip to content

Commit

Permalink
Remove a spurious console.log from the ChromiumBrowser function i…
Browse files Browse the repository at this point in the history
…n `test/webbrowser.js` file

This looks entirely like something which was left-over from debugging, and that line hasn't been touched since PR 4515, especially considering that the corresponding branch in `FirefoxBrowser` doesn't print anything.
  • Loading branch information
Snuffleupagus committed Mar 25, 2020
1 parent dcb16af commit fdfcde2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/webbrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@ function ChromiumBrowser(name, execPath, headless) {
var m = /([^.\/]+)\.app(\/?)$/.exec(execPath);
if (m) {
execPath += (m[2] ? "" : "/") + "Contents/MacOS/" + m[1];
console.log(execPath);
}
}
WebBrowser.call(this, name, execPath, headless);
Expand Down

0 comments on commit fdfcde2

Please sign in to comment.