aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:33:45 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:33:45 -0500
commita61b9cd671f3378c4078c0a58dd8b8be073f8cef (patch)
tree1d0e29b2fc9477ac9956c904ea051e29c3b13f2d /test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js
parentdedd68020b222fe79fb4fe9f84465e842e4ca61f (diff)
built-ins/Object/*: make all indentation consistent (depth & character) (#1432)
Diffstat (limited to 'test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js')
-rw-r--r--test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js
index 1597725f1..5ecb545f8 100644
--- a/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js
+++ b/test/built-ins/Object/getOwnPropertyNames/15.2.3.4-4-40.js
@@ -8,12 +8,12 @@ description: >
object 'O' is not pushed into the returned array
---*/
- var str = new String("abc");
+var str = new String("abc");
- String.prototype.protoProperty = "protoString";
+String.prototype.protoProperty = "protoString";
- var result = Object.getOwnPropertyNames(str);
+var result = Object.getOwnPropertyNames(str);
- for (var p in result) {
- assert.notSameValue(result[p], "protoProperty", 'result[p]');
- }
+for (var p in result) {
+ assert.notSameValue(result[p], "protoProperty", 'result[p]');
+}