Skip to content

Commit 75dce4c

Browse files
larsgwaeschright
authored andcommitted
test(maketest): Fix common.npm callback arguments (#144)
PR-URL: #144 Credit: @larsgw Reviewed-By: @aeschright
1 parent cb8707a commit 75dce4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/maketest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ test('setup', t => {
6969
})
7070
7171
test('example', t => {
72-
return common.npm(['install'], conf).then((code, stdout, stderr) => {
72+
return common.npm(['install'], conf).then(([code, stdout, stderr]) => {
7373
t.is(code, 0, 'command ran ok')
7474
t.comment(stdout.trim())
7575
t.comment(stderr.trim())

0 commit comments

Comments
 (0)