Skip to content

Commit

Permalink
test: maketest: Fix common.npm callback arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgw authored Jan 19, 2019
1 parent 6d0cc95 commit 534222b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/maketest
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ test('setup', t => {
})
test('example', t => {
return common.npm(['install'], conf).then((code, stdout, stderr) => {
return common.npm(['install'], conf).then(([code, stdout, stderr]) => {
t.is(code, 0, 'command ran ok')
t.comment(stdout.trim())
t.comment(stderr.trim())
Expand Down

0 comments on commit 534222b

Please sign in to comment.