Skip to content

Commit

Permalink
Use object shorthand for properties
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU committed Apr 25, 2020
1 parent 8cc2520 commit 320379b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/client/tape-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test.createStream().on('data', function (log) {
con.write(JSON.stringify({ op: 'log', log: log.toString() }) + '\n')
success = log === '\n# ok\n'
}).on('end', function () {
con.write(JSON.stringify({ op: 'end', success: success }) + '\n')
con.write(JSON.stringify({ op: 'end', success }) + '\n')
con.end()
})

Expand Down

0 comments on commit 320379b

Please sign in to comment.