summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js')
-rw-r--r--test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js
index d3be4f9fb..e27b08feb 100644
--- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js
+++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-16.js
@@ -10,7 +10,7 @@ description: >
Date.prototype.toISOString throw the TypeError
---*/
-var date = new String("1970-01-00000:00:00.000Z");
+ var date = new String("1970-01-00000:00:00.000Z");
assert.throws(TypeError, function() {
- Date.prototype.toISOString.call(date);
+ Date.prototype.toISOString.call(date);
});