diff --git a/test/inspector/test-bindings.js b/test/inspector/test-bindings.js index 5e0f9293b0e6fb..b2140c11a3329a 100644 --- a/test/inspector/test-bindings.js +++ b/test/inspector/test-bindings.js @@ -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}`); } } };