@@ -9,23 +9,23 @@ const buf = Buffer.allocUnsafe(9);
9
9
let val = 123456789n ;
10
10
buf [ `writeBigInt64${ endianness } ` ] ( val , 0 ) ;
11
11
let rtn = buf [ `readBigInt64${ endianness } ` ] ( 0 ) ;
12
- assert . strictEqual ( val , rtn ) ;
12
+ assert . strictEqual ( rtn , val ) ;
13
13
14
14
// Should allow INT64_MAX to be written and read
15
15
val = 0x7fffffffffffffffn ;
16
16
buf [ `writeBigInt64${ endianness } ` ] ( val , 0 ) ;
17
17
rtn = buf [ `readBigInt64${ endianness } ` ] ( 0 ) ;
18
- assert . strictEqual ( val , rtn ) ;
18
+ assert . strictEqual ( rtn , val ) ;
19
19
20
20
// Should read and write a negative signed 64-bit integer
21
21
val = - 123456789n ;
22
22
buf [ `writeBigInt64${ endianness } ` ] ( val , 0 ) ;
23
- assert . strictEqual ( val , buf [ `readBigInt64${ endianness } ` ] ( 0 ) ) ;
23
+ assert . strictEqual ( buf [ `readBigInt64${ endianness } ` ] ( 0 ) , val ) ;
24
24
25
25
// Should read and write an unsigned 64-bit integer
26
26
val = 123456789n ;
27
27
buf [ `writeBigUInt64${ endianness } ` ] ( val , 0 ) ;
28
- assert . strictEqual ( val , buf [ `readBigUInt64${ endianness } ` ] ( 0 ) ) ;
28
+ assert . strictEqual ( buf [ `readBigUInt64${ endianness } ` ] ( 0 ) , val ) ;
29
29
30
30
assert . strictEqual ( buf [ `writeBigUInt64${ endianness } ` ] ( val , 0 ) , 8 ) ;
31
31
assert . strictEqual ( buf [ `writeBigInt64${ endianness } ` ] ( val , 0 ) , 8 ) ;
0 commit comments