Skip to content

Commit

Permalink
revert some changes in webdriver.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlemeshko committed Jul 9, 2020
1 parent d1ef337 commit 13bd001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/services/remote/webdriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ async function attemptToCreateCommand(
return {
session,
consoleLog$: chunk$.pipe(
map(chunk => chunk.toString('utf8')),
mergeMap(msg => {
map((chunk) => chunk.toString('utf8')),
mergeMap((msg) => {
const match = msg.match(CONSOLE_LINE_RE);
if (!match) {
log.debug('Firefox stdout: ' + msg);
Expand Down

0 comments on commit 13bd001

Please sign in to comment.