Skip to content

Commit 320379b

Browse files
committed
Use object shorthand for properties
1 parent 8cc2520 commit 320379b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/client/tape-helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test.createStream().on('data', function (log) {
1010
con.write(JSON.stringify({ op: 'log', log: log.toString() }) + '\n')
1111
success = log === '\n# ok\n'
1212
}).on('end', function () {
13-
con.write(JSON.stringify({ op: 'end', success: success }) + '\n')
13+
con.write(JSON.stringify({ op: 'end', success }) + '\n')
1414
con.end()
1515
})
1616

0 commit comments

Comments
 (0)