Skip to content

Commit

Permalink
test: fix clang-format error (#2691)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhulce committed Jul 14, 2017
1 parent 36c2df5 commit fedc76a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chrome-launcher/chrome-finder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ export function linux() {
];
executables.forEach((executable: string) => {
try {
const chromePath =
execFileSync('which', [executable]).toString().split(newLineRegex)[0];
const chromePath = execFileSync('which', [executable]).toString().split(newLineRegex)[0];

if (canAccess(chromePath)) {
installations.push(chromePath);
Expand Down

0 comments on commit fedc76a

Please sign in to comment.