Skip to content

Commit

Permalink
test: replace concat with template literals
Browse files Browse the repository at this point in the history
PR-URL: #15885
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
GitHubTracey authored and MylesBorins committed Oct 11, 2017
1 parent 6e25b08 commit 387b0b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/inspector/test-bindings.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ function testSampleDebugSession() {
actual = v['value']['value'];
expected = expects[v['name']][i];
if (actual !== expected) {
failures.push('Iteration ' + i + ' variable: ' + v['name'] +
' expected: ' + expected + ' actual: ' + actual);
failures.push(`Iteration ${i} variable: ${v['name']} ` +
`expected: ${expected} actual: ${actual}`);
}
}
};
Expand Down

0 comments on commit 387b0b8

Please sign in to comment.