diff --git a/test/parallel/test-child-process-send-utf8.js b/test/parallel/test-child-process-send-utf8.js index c5d0943301c730..4cedc589b1db95 100644 --- a/test/parallel/test-child-process-send-utf8.js +++ b/test/parallel/test-child-process-send-utf8.js @@ -3,7 +3,7 @@ const common = require('../common'); const assert = require('assert'); const fork = require('child_process').fork; -const expected = Array(1e5).join('ßßßß'); +const expected = 'ßßßß'.repeat(1e5 - 1); if (process.argv[2] === 'child') { process.send(expected); } else { diff --git a/test/parallel/test-stringbytes-external.js b/test/parallel/test-stringbytes-external.js index 94b58d9c6eadf0..3775ecc13ec2dd 100644 --- a/test/parallel/test-stringbytes-external.js +++ b/test/parallel/test-stringbytes-external.js @@ -23,9 +23,9 @@ assert.strictEqual(b[1], 0); assert.strictEqual(ucs2_control, c); // now create big strings -const size = 1 + (1 << 20); -write_str = Array(size).join(write_str); -ucs2_control = Array(size).join(ucs2_control); +const size = 1 << 20; +write_str = write_str.repeat(size); +ucs2_control = ucs2_control.repeat(size); // check resultant buffer and output string b = Buffer.from(write_str, 'ucs2'); @@ -110,7 +110,7 @@ const PRE_3OF4_APEX = Math.ceil((EXTERN_APEX / 4) * 3) - RADIOS; // https://github.com/nodejs/node/issues/1024 { - const a = Array(1 << 20).join('x'); + const a = 'x'.repeat(1 << 20 - 1); const b = Buffer.from(a, 'ucs2').toString('ucs2'); const c = Buffer.from(b, 'utf8').toString('utf8');