]> zoso.dev Git - buffer.git/commitdiff
Use correct Buffer in tests
authorDevon Govett <devongovett@gmail.com>
Thu, 10 Apr 2014 07:02:47 +0000 (00:02 -0700)
committerDevon Govett <devongovett@gmail.com>
Thu, 10 Apr 2014 07:02:47 +0000 (00:02 -0700)
`new B` instead of `new Buffer`, otherwise browserify will inline the old version in the tests and we won't be testing anything. :)

test/slice.js

index 6a5914fa1aa95334fe9d36af999297fcfb57349e..4efbe30d2f1ae4a984a580b341d76bfeda3834ed 100644 (file)
@@ -4,7 +4,7 @@ var test = require('tape')
 test('modifying buffer created by .slice() modifies original memory', function (t) {
   if (!B._useTypedArrays) return t.end()
 
-  var buf1 = new Buffer(26)
+  var buf1 = new B(26)
   for (var i = 0 ; i < 26 ; i++) {
     buf1[i] = i + 97 // 97 is ASCII a
   }
@@ -21,7 +21,7 @@ test('modifying buffer created by .slice() modifies original memory', function (
 test('modifying parent buffer modifies .slice() buffer\'s memory', function (t) {
   if (!B._useTypedArrays) return t.end()
 
-  var buf1 = new Buffer(26)
+  var buf1 = new B(26)
   for (var i = 0 ; i < 26 ; i++) {
     buf1[i] = i + 97 // 97 is ASCII a
   }