Skip to content

Commit 94a7616

Browse files
Kai Cataldotargos
authored andcommitted
tools: replace string concat
PR-URL: #15850 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 56cf077 commit 94a7616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/test-npm-package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function spawnCopyDeepSync(source, destination) {
3939
function runNPMPackageTests({ srcDir, install, rebuild, testArgs, logfile }) {
4040
// Make sure we don't conflict with concurrent test runs
4141
const srcHash = createHash('md5').update(srcDir).digest('hex');
42-
common.tmpDir = common.tmpDir + '.npm.' + srcHash;
42+
common.tmpDir = `${common.tmpDir}.npm.${srcHash}`;
4343
common.refreshTmpDir();
4444

4545
const tmpDir = common.tmpDir;

0 commit comments

Comments
 (0)