--- a/nashorn/test/script/basic/JDK-8026137.js Mon May 05 14:17:20 2014 +0200
+++ b/nashorn/test/script/basic/JDK-8026137.js Tue May 13 11:30:40 2014 +0200
@@ -30,7 +30,9 @@
*/
try {
- (function f() { Object.defineProperty({},"x",{get: function(){return {valueOf:function(){throw 0}}}}).x - Object.defineProperty({},"x",{get: function(){throw 1}}).x })()
+ (function f() {
+ Object.defineProperty({},"x",{get: function(){return {valueOf:function(){throw 0}}}}).x -
+ Object.defineProperty({},"x",{get: function(){throw 1}}).x })()
}
catch (e) {
print(e);