Index: test/mjsunit/modules-namespace1.js |
diff --git a/test/mjsunit/modules-namespace1.js b/test/mjsunit/modules-namespace1.js |
index 6f0876aa195ce0f5c3bb74f1319e19c597e9fb10..8406efe61ed3546a0e481b90a0d8aa71170c61fb 100644 |
--- a/test/mjsunit/modules-namespace1.js |
+++ b/test/mjsunit/modules-namespace1.js |
@@ -46,10 +46,10 @@ assertSame(foo, foo.foo_again); |
assertTrue(Reflect.has(foo, Symbol.toStringTag)); |
assertEquals("string", typeof Reflect.get(foo, Symbol.toStringTag)); |
assertEquals( |
- {value: "Module", configurable: true, writable: false, enumerable: false}, |
+ {value: "Module", configurable: false, writable: false, enumerable: false}, |
Reflect.getOwnPropertyDescriptor(foo, Symbol.toStringTag)); |
- |
-// TODO(neis): Clarify spec w.r.t. other symbols. |
+// TODO(neis): Spec currently says the next one should return true. |
+assertFalse(Reflect.deleteProperty(foo, Symbol.toStringTag)); |
// Nonexistant properties. |
let nonexistant = ["gaga", 123, Symbol('')]; |