Skip to content

Commit 506a5f7

Browse files
GitHubTraceyBridgeAR
authored andcommitted
test: replace concat with template literals
PR-URL: #15885 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 92d3269 commit 506a5f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)