Index: test/mjsunit/harmony/reflect.js |
diff --git a/test/mjsunit/harmony/reflect.js b/test/mjsunit/harmony/reflect.js |
index 8ee1227a443a1b002e77aefa68e6aa7ded3f9a41..6449eb8259f4ee5fdd34dc848b4166eb4257a149 100644 |
--- a/test/mjsunit/harmony/reflect.js |
+++ b/test/mjsunit/harmony/reflect.js |
@@ -486,27 +486,6 @@ function prepare(target) { |
})(); |
- |
-//////////////////////////////////////////////////////////////////////////////// |
-// Reflect.enumerate |
- |
- |
-(function testReflectEnumerateArity() { |
- assertEquals(1, Reflect.enumerate.length); |
-})(); |
- |
- |
-(function testReflectEnumerateOnNonObject() { |
- assertThrows(function() { Reflect.enumerate(); }, TypeError); |
- assertThrows(function() { Reflect.enumerate(42); }, TypeError); |
- assertThrows(function() { Reflect.enumerate(null); }, TypeError); |
-})(); |
- |
- |
-// See reflect-enumerate*.js for further tests. |
- |
- |
- |
//////////////////////////////////////////////////////////////////////////////// |
// Reflect.getOwnPropertyDescriptor |