summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js')
-rw-r--r--test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js
index 45cdcecde..97b14fd89 100644
--- a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js
+++ b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-2.js
@@ -7,7 +7,7 @@ description: Object.getOwnPropertyNames returns array of property names (Object)
includes: [arrayContains.js]
---*/
-var result = Object.getOwnPropertyNames(Object);
-var expResult = ["getPrototypeOf", "getOwnPropertyDescriptor", "getOwnPropertyNames", "create", "defineProperty", "defineProperties", "seal", "freeze", "preventExtensions", "isSealed", "isFrozen", "isExtensible", "keys", "prototype", "length"];
+ var result = Object.getOwnPropertyNames(Object);
+ var expResult = ["getPrototypeOf", "getOwnPropertyDescriptor", "getOwnPropertyNames", "create", "defineProperty", "defineProperties", "seal", "freeze", "preventExtensions", "isSealed", "isFrozen", "isExtensible", "keys", "prototype", "length"];
assert(arrayContains(result, expResult), 'arrayContains(result, expResult) !== true');