Skip to content

Commit 510ab5d

Browse files
committed
replace test comments with refs
1 parent f84496f commit 510ab5d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/parallel/test-buffer-concat.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ assert.deepStrictEqual(Buffer.concat([new Uint8Array([0x41, 0x42]),
100100
new Uint8Array([0x43, 0x44])]),
101101
Buffer.from('ABCD'));
102102

103-
// Test its possible to concat buffers where the total length of the result in bytes
104-
// is greater than 2^32.
103+
// Ref: https://github.com/nodejs/node/issues/55422#issue-2594486812
105104
if (2 ** 32 + 1 <= kMaxLength) {
106105
const a = Buffer.alloc(2 ** 31, 0);
107106
const b = Buffer.alloc(2 ** 31, 1);

0 commit comments

Comments
 (0)