From 387b0b8b1020f943b97b9db4e8729676d1affee5 Mon Sep 17 00:00:00 2001 From: gitHubTracey Date: Fri, 6 Oct 2017 09:59:13 -0700 Subject: [PATCH] test: replace concat with template literals PR-URL: https://github.com/nodejs/node/pull/15885 Reviewed-By: Ruben Bridgewater --- test/inspector/test-bindings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}`); } } };