Skip to content

Commit

Permalink
standard
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Mar 2, 2017
1 parent a72704b commit 86d7c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/basic.js
Expand Up @@ -8,7 +8,7 @@ var blob = new Blob([ new Uint8Array([1, 2, 3]) ], { type: 'application/octet-bi
test('Basic tests', function (t) {
toBuffer(blob, function (err, buffer) {
if (err) throw err
t.deepEqual(buffer, new Buffer([1, 2, 3]))
t.deepEqual(buffer, Buffer.from([1, 2, 3]))
t.end()
})
})
Expand Down

0 comments on commit 86d7c69

Please sign in to comment.