aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js')
-rw-r--r--test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js b/test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js
index e4d13be3d..cf9f213d7 100644
--- a/test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js
+++ b/test/suite/ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js
@@ -1,12 +1,10 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * Boolean.prototype has the attribute DontEnum
- *
- * @path ch15/15.6/15.6.3/15.6.3.1/S15.6.3.1_A4.js
- * @description Checking if enumerating the Boolean.prototype property fails
- */
+/*---
+info: Boolean.prototype has the attribute DontEnum
+description: Checking if enumerating the Boolean.prototype property fails
+---*/
//CHECK#1
for(x in Boolean) {
@@ -18,4 +16,3 @@ for(x in Boolean) {
if (Boolean.propertyIsEnumerable('prototype')) {
$ERROR('#2: Boolean.prototype has the attribute DontEnum');
}
-