@@ -138,7 +138,7 @@ assert.doesNotThrow(() => Buffer.alloc(1).write('', 1, 0));
138
138
const sliceA = b . slice ( offset , offset + asciiString . length ) ;
139
139
const sliceB = b . slice ( offset , offset + asciiString . length ) ;
140
140
for ( let i = 0 ; i < asciiString . length ; i ++ ) {
141
- assert . equal ( sliceA [ i ] , sliceB [ i ] ) ;
141
+ assert . strictEqual ( sliceA [ i ] , sliceB [ i ] ) ;
142
142
}
143
143
}
144
144
@@ -149,7 +149,7 @@ assert.doesNotThrow(() => Buffer.alloc(1).write('', 1, 0));
149
149
150
150
b . write ( utf8String , 0 , Buffer . byteLength ( utf8String ) , 'utf8' ) ;
151
151
let utf8Slice = b . toString ( 'utf8' , 0 , Buffer . byteLength ( utf8String ) ) ;
152
- assert . equal ( utf8String , utf8Slice ) ;
152
+ assert . strictEqual ( utf8String , utf8Slice ) ;
153
153
154
154
assert . strictEqual ( Buffer . byteLength ( utf8String ) ,
155
155
b . write ( utf8String , offset , 'utf8' ) ) ;
@@ -1027,7 +1027,8 @@ assert(Buffer.allocUnsafe(1).parent instanceof ArrayBuffer);
1027
1027
Buffer . poolSize = ps ;
1028
1028
1029
1029
// Test Buffer.copy() segfault
1030
- assert . throws ( ( ) => Buffer . allocUnsafe ( 10 ) . copy ( ) ) ;
1030
+ assert . throws ( ( ) => Buffer . allocUnsafe ( 10 ) . copy ( ) ,
1031
+ / T y p e E r r o r : a r g u m e n t s h o u l d b e a B u f f e r / ) ;
1031
1032
1032
1033
const regErrorMsg = new RegExp ( 'First argument must be a string, Buffer, ' +
1033
1034
'ArrayBuffer, Array, or array-like object.' ) ;
@@ -1036,10 +1037,10 @@ assert.throws(() => Buffer.from(), regErrorMsg);
1036
1037
assert . throws ( ( ) => Buffer . from ( null ) , regErrorMsg ) ;
1037
1038
1038
1039
// Test prototype getters don't throw
1039
- assert . equal ( Buffer . prototype . parent , undefined ) ;
1040
- assert . equal ( Buffer . prototype . offset , undefined ) ;
1041
- assert . equal ( SlowBuffer . prototype . parent , undefined ) ;
1042
- assert . equal ( SlowBuffer . prototype . offset , undefined ) ;
1040
+ assert . strictEqual ( Buffer . prototype . parent , undefined ) ;
1041
+ assert . strictEqual ( Buffer . prototype . offset , undefined ) ;
1042
+ assert . strictEqual ( SlowBuffer . prototype . parent , undefined ) ;
1043
+ assert . strictEqual ( SlowBuffer . prototype . offset , undefined ) ;
1043
1044
1044
1045
1045
1046
{
@@ -1065,7 +1066,7 @@ assert.throws(() => {
1065
1066
const a = Buffer . alloc ( 1 ) ;
1066
1067
const b = Buffer . alloc ( 1 ) ;
1067
1068
a . copy ( b , 0 , 0x100000000 , 0x100000001 ) ;
1068
- } ) , / o u t o f r a n g e i n d e x / ;
1069
+ } , / o u t o f r a n g e i n d e x / ) ;
1069
1070
1070
1071
// Unpooled buffer (replaces SlowBuffer)
1071
1072
{
0 commit comments