Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e35aced

Browse filesBrowse files
kt3kMylesBorins
authored andcommitted
test: refactor using template string
Use template string where it's appropriate. PR-URL: #17314 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 0b14488 commit e35aced
Copy full SHA for e35aced

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎test/abort/test-zlib-invalid-internals-usage.js‎

Copy file name to clipboardExpand all lines: test/abort/test-zlib-invalid-internals-usage.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ if (process.argv[2] === 'child') {
1313
assert.strictEqual(child.stdout.toString(), '');
1414
assert.ok(child.stderr.includes(
1515
'WARNING: You are likely using a version of node-tar or npm that ' +
16-
'is incompatible with this version of Node.js.' + os.EOL +
16+
`is incompatible with this version of Node.js.${os.EOL}` +
1717
'Please use either the version of npm that is bundled with Node.js, or ' +
1818
'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));
19+
`compatible with Node.js 9 and above.${os.EOL}`));
2020
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.