Skip to content

Commit

Permalink
test: refactor assert.equal, update syntax to ES6
Browse files Browse the repository at this point in the history
  • Loading branch information
Prieto, Marcos authored and MylesBorins committed Feb 1, 2017
1 parent 121b68a commit 827bbe7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/parallel/test-buffer-arraybuffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const buf = new Buffer(ab);
assert.ok(buf instanceof Buffer);
// For backwards compatibility of old .parent property test that if buf is not
// a slice then .parent should be undefined.
assert.equal(buf.parent, undefined);
assert.equal(buf.buffer, ab);
assert.equal(buf.length, ab.byteLength);
assert.strictEqual(buf.parent, undefined);
assert.strictEqual(buf.buffer, ab);
assert.strictEqual(buf.length, ab.byteLength);


buf.fill(0xC);
Expand Down Expand Up @@ -46,7 +46,7 @@ assert.throws(function() {
}, TypeError);

// write{Double,Float}{LE,BE} with noAssert should not crash, cf. #3766
var b = new Buffer(1);
const b = Buffer.allocUnsafe(1);
b.writeFloatLE(11.11, 0, true);
b.writeFloatBE(11.11, 0, true);
b.writeDoubleLE(11.11, 0, true);
Expand Down

0 comments on commit 827bbe7

Please sign in to comment.