Skip to content

Commit

Permalink
misc: remove unnecessary return in Promise (#9703)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored and brendankenny committed Sep 23, 2019
1 parent c936108 commit 266404d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/gather/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,7 @@ class Driver {
resolve({traceEvents});
});

return this.sendCommand('Tracing.end').catch(reject);
this.sendCommand('Tracing.end').catch(reject);
});
}

Expand Down

0 comments on commit 266404d

Please sign in to comment.