summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/entries/exception-not-object-coercible.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/entries/exception-not-object-coercible.js')
-rw-r--r--test/built-ins/Object/entries/exception-not-object-coercible.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Object/entries/exception-not-object-coercible.js b/test/built-ins/Object/entries/exception-not-object-coercible.js
index de90d9d6c..75e73145e 100644
--- a/test/built-ins/Object/entries/exception-not-object-coercible.js
+++ b/test/built-ins/Object/entries/exception-not-object-coercible.js
@@ -7,10 +7,10 @@ description: Object.entries should fail if given a null or undefined value
author: Jordan Harband
---*/
-assert.throws(TypeError, function () {
- Object.entries(null);
+assert.throws(TypeError, function() {
+ Object.entries(null);
});
-assert.throws(TypeError, function () {
- Object.entries(undefined);
+assert.throws(TypeError, function() {
+ Object.entries(undefined);
});