nashorn/test/script/nosecurity/parserapi_strict.js.EXPECTED
changeset 37732 3673fec68d16
parent 29407 3fd4ede1581e
--- a/nashorn/test/script/nosecurity/parserapi_strict.js.EXPECTED	Wed Jul 05 21:38:12 2017 +0200
+++ b/nashorn/test/script/nosecurity/parserapi_strict.js.EXPECTED	Wed Apr 27 15:50:33 2016 +0200
@@ -6,10 +6,10 @@
 
 with({}) {}
        ^
-repeat_param.js:2:15 strict mode function cannot have duplicate parameter name "x"
+repeat_param.js:2:18 strict mode function cannot have duplicate parameter name "x"
 
 function func(x, x) {}
-               ^
+                  ^
 repeat_prop.js:2:22 Property "foo" already defined
 
 var obj = { foo: 34, foo: 'hello' };