summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js')
-rw-r--r--js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js b/js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js
index e3a3707431..f155e7975f 100644
--- a/js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js
+++ b/js/src/tests/test262/built-ins/Object/seal/object-seal-p-is-own-accessor-property-that-overrides-an-inherited-data-property.js
@@ -31,7 +31,10 @@ Object.defineProperty(obj, "foo", {
assert(Object.isExtensible(obj));
Object.seal(obj);
-verifyNotConfigurable(obj, "foo");
+verifyProperty(obj, "foo", {
+ configurable: false,
+});
+
assert.sameValue(obj.foo, 10);
reportCompare(0, 0);