From 1283137d02637e1a406316b43785eea051d1e7d2 Mon Sep 17 00:00:00 2001 From: Anawesha Khuntia Date: Fri, 10 Nov 2017 10:54:32 +0530 Subject: [PATCH 1/2] Modified method console.log of loop.js; --- test/fixtures/loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/loop.js b/test/fixtures/loop.js index e91b831d01b816..c6ff12f7a3989b 100644 --- a/test/fixtures/loop.js +++ b/test/fixtures/loop.js @@ -4,7 +4,7 @@ console.log('A message', 5); while (t > 0) { if (t++ === 1000) { t = 0; - console.log('Outputed message #' + k++); + console.log(`Outputed message #${k++}); } } process.exit(55); From f65bb6baf00c55c09aaca3831da0606d5b7f8918 Mon Sep 17 00:00:00 2001 From: Anawesha Khuntia Date: Fri, 10 Nov 2017 12:27:15 +0530 Subject: [PATCH 2/2] Fixed the back-tick issue --- test/fixtures/loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/loop.js b/test/fixtures/loop.js index c6ff12f7a3989b..461fb393583e68 100644 --- a/test/fixtures/loop.js +++ b/test/fixtures/loop.js @@ -4,7 +4,7 @@ console.log('A message', 5); while (t > 0) { if (t++ === 1000) { t = 0; - console.log(`Outputed message #${k++}); + console.log(`Outputed message #${k++}`); } } process.exit(55);