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