summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js')
-rw-r--r--test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js
index 5772ef4d0..cc155a5ee 100644
--- a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js
+++ b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-45.js
@@ -8,12 +8,12 @@ description: >
object 'O' is not pushed into the returned array.
---*/
- var arr = [0, 1, 2];
+var arr = [0, 1, 2];
- Array.prototype.protoProperty = "protoArray";
+Array.prototype.protoProperty = "protoArray";
- var result = Object.getOwnPropertyNames(arr);
+var result = Object.getOwnPropertyNames(arr);
- for (var p in result) {
- assert.notSameValue(result[p], "protoProperty", 'result[p]');
- }
+for (var p in result) {
+ assert.notSameValue(result[p], "protoProperty", 'result[p]');
+}