nashorn/test/script/basic/JDK-8013337.js
changeset 24778 2ff5d7041566
parent 17251 444648345fa6
--- a/nashorn/test/script/basic/JDK-8013337.js	Wed Jun 04 13:55:21 2014 +0530
+++ b/nashorn/test/script/basic/JDK-8013337.js	Wed Jun 04 13:08:57 2014 +0200
@@ -22,7 +22,7 @@
  */
 
 /**
- * JDK-8013337: Issues with Date.prototype's get, set functions 
+ * JDK-8013337: Issues with Date.prototype's get, set functions
  *
  * @test
  * @option -timezone=Asia/Calcutta
@@ -63,7 +63,7 @@
 checkGetterCalled("setUTCMonth");
 
 try {
-    Date.prototype.setTime.call({}, { valueOf: function() { throw "err" } }) 
+    Date.prototype.setTime.call({}, { valueOf: function() { throw "err" } })
 } catch (e) {
     if (! (e instanceof TypeError)) {
         fail("TypeError expected, got " + e);