From 8469e61ad1c20474b6456cb85dadb529fa95b6b2 Mon Sep 17 00:00:00 2001 From: Patrick Hulce Date: Fri, 14 Jul 2017 15:39:42 -0700 Subject: [PATCH] test: fix clang-format error --- chrome-launcher/chrome-finder.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chrome-launcher/chrome-finder.ts b/chrome-launcher/chrome-finder.ts index d4bda1b16730..01c129246b36 100644 --- a/chrome-launcher/chrome-finder.ts +++ b/chrome-launcher/chrome-finder.ts @@ -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);