Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Apr 27, 2019
1 parent c3ccb19 commit 42d6a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
}

Expand Down

0 comments on commit 42d6a7d

Please sign in to comment.