Ensure testing array buffers hits all parts of cloneBuffer.

This commit is contained in:
John-David Dalton
2014-07-22 07:15:38 -07:00
parent 133b1151bd
commit bdbc181e38

View File

@@ -1546,7 +1546,7 @@
});
test('`_.' + methodName + '` should clone array buffers', 2, function() {
var buffer = ArrayBuffer && new ArrayBuffer(8);
var buffer = ArrayBuffer && new ArrayBuffer(12);
if (buffer) {
var actual = func(buffer);
strictEqual(actual.byteLength, buffer.byteLength);