We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b14488 commit e35acedCopy full SHA for e35aced
test/abort/test-zlib-invalid-internals-usage.js
@@ -13,8 +13,8 @@ if (process.argv[2] === 'child') {
13
assert.strictEqual(child.stdout.toString(), '');
14
assert.ok(child.stderr.includes(
15
'WARNING: You are likely using a version of node-tar or npm that ' +
16
- 'is incompatible with this version of Node.js.' + os.EOL +
+ `is incompatible with this version of Node.js.${os.EOL}` +
17
'Please use either the version of npm that is bundled with Node.js, or ' +
18
'a version of npm (> 5.5.1 or < 5.4.0) or node-tar (> 4.0.1) that is ' +
19
- 'compatible with Node.js 9 and above.' + os.EOL));
+ `compatible with Node.js 9 and above.${os.EOL}`));
20
}
0 commit comments