From 42d6a7d5f7c11a084d482b8053b4845697b5e390 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Fri, 26 Apr 2019 18:25:55 -0700 Subject: [PATCH] Remove unused variable --- test/cli-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cli-spec.js b/test/cli-spec.js index 3e62398..2110a6d 100644 --- a/test/cli-spec.js +++ b/test/cli-spec.js @@ -19,7 +19,7 @@ async function execAsar (args) { } async function assertAsarOutputMatches (args, expectedFilename) { - const [{ stdout, stderr }, expectedContents] = await Promise.all([execAsar(args), fs.readFile(expectedFilename, 'utf8')]) + const [{ stdout }, expectedContents] = await Promise.all([execAsar(args), fs.readFile(expectedFilename, 'utf8')]) return compFileLists(stdout, `${expectedContents}\n`) }