diff --git a/test/language/line-terminators/S7.3_A1.2_T2.js b/test/language/line-terminators/S7.3_A1.2_T2.js
index 4cdb7d07c2f3fd7e85ca45e0fce8fa1e2d6e22b1..553f75d4ab4e60123d3a52fe0686e08ca6bcccf2 100644
--- a/test/language/line-terminators/S7.3_A1.2_T2.js
+++ b/test/language/line-terminators/S7.3_A1.2_T2.js
@@ -3,15 +3,13 @@
 
 /*---
 info: CARRIAGE RETURN (U+000D) may occur between any two tokens
+esid: sec-line-terminators
 es5id: 7.3_A1.2_T2
 description: Insert real CARRIAGE RETURN between tokens of var x=1
 ---*/
 
-//CHECK#1
-var
-x
-=
-1;
+var
x
=
1;
+
 if (x !== 1) {
   $ERROR('#1: var\\nx\\n=\\n1\\n; x === 1. Actual: ' + (x));
 }
diff --git a/test/language/line-terminators/S7.3_A5.2_T2.js b/test/language/line-terminators/S7.3_A5.2_T2.js
index 47fe256c25d795622ed30847c2fbfabde1213062..98d42edca0c0dfc985b4f65ab808586114d66072 100644
--- a/test/language/line-terminators/S7.3_A5.2_T2.js
+++ b/test/language/line-terminators/S7.3_A5.2_T2.js
@@ -3,17 +3,14 @@
 
 /*---
 info: Multi line comment can contain CARRIAGE RETURN (U+000D)
+esid: sec-line-terminators
 es5id: 7.3_A5.2_T2
 description: Insert real CARRIAGE RETURN into multi line comment
 ---*/
 
-/*CHECK#1*/
 var x = 0;
 /*
-multi
-line
-comment
-x = 1;
+multi
line
comment
x = 1;
 */
 if (x !== 0) {
   $ERROR('#1: var x = 0; /*\\rmulti\\rline\\rcomment\\rx = 1;\\r*/ x === 0. Actual: ' + (x));