Skip to content

Commit 387b0b8

Browse files
GitHubTraceyMylesBorins
authored andcommitted
test: replace concat with template literals
PR-URL: #15885 Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 6e25b08 commit 387b0b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/inspector/test-bindings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ function testSampleDebugSession() {
6969
actual = v['value']['value'];
7070
expected = expects[v['name']][i];
7171
if (actual !== expected) {
72-
failures.push('Iteration ' + i + ' variable: ' + v['name'] +
73-
' expected: ' + expected + ' actual: ' + actual);
72+
failures.push(`Iteration ${i} variable: ${v['name']} ` +
73+
`expected: ${expected} actual: ${actual}`);
7474
}
7575
}
7676
};

0 commit comments

Comments
 (0)