aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js')
-rw-r--r--test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js b/test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js
index 8284f932a..b51fc76f1 100644
--- a/test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js
+++ b/test/suite/ch07/7.9/7.9.2/S7.9.2_A1_T6.js
@@ -1,16 +1,15 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * Check examples for automatic semicolon insertion from the Standart
- *
- * @path ch07/7.9/7.9.2/S7.9.2_A1_T6.js
- * @description if(a>b) \n else c=d is not a valid sentence in the ECMAScript grammar
- * @negative
- */
+/*---
+info: Check examples for automatic semicolon insertion from the Standart
+description: >
+ if(a>b) \n else c=d is not a valid sentence in the ECMAScript
+ grammar
+flags: [negative]
+---*/
//CHECK#1
var a=1,b=2,c=3,d;
if(a>b)
else c=d
-