]> zoso.dev Git - buffer.git/commitdiff
fix bug in tests
authorFeross Aboukhadijeh <feross@feross.org>
Wed, 29 Oct 2014 03:39:18 +0000 (20:39 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Wed, 29 Oct 2014 03:39:18 +0000 (20:39 -0700)
test/basic.js
test/write.js

index 0c02ee5f3ecb1520a9cc76d477cb0b70a1620cb7..cdaa37d13eab260924514e756067ec1d502b9999 100644 (file)
@@ -45,7 +45,7 @@ test('setting index value should modify buffer contents', function (t) {
 test('storing negative number should cast to unsigned', function (t) {
   var buf = new B(1)
 
-  if (Buffer.TYPED_ARRAY_SUPPORT) {
+  if (B.TYPED_ARRAY_SUPPORT) {
     // This does not work with the object implementation -- nothing we can do!
     buf[0] = -3
     t.equal(buf[0], 253)
index 5460246cd83e631d0792ef6de44ea9a25f6554d9..550ca8a64adbeae407e80ba0a928bb79e973941f 100644 (file)
@@ -66,7 +66,7 @@ test('hex of write{Uint,Int}{8,16,32}{LE,BE}', function (t) {
 })
 
 test('hex of write{Uint,Int}{8,16,32}{LE,BE} with overflow', function (t) {
-  if (!Buffer.TYPED_ARRAY_SUPPORT) {
+  if (!B.TYPED_ARRAY_SUPPORT) {
     t.pass('object impl: skipping overflow test')
     t.end()
     return