From 43e1b21ec638dfea723f076ca0afde76d33c4f83 Mon Sep 17 00:00:00 2001 From: "bclary%bclary.com" Date: Mon, 2 Oct 2006 10:18:38 +0000 Subject: [PATCH] JavaScript Test - tweak decompilation, bug 352202 --- js/tests/js1_5/Regress/regress-352202.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tests/js1_5/Regress/regress-352202.js b/js/tests/js1_5/Regress/regress-352202.js index 8cc031d0ebc7..8456eb277248 100755 --- a/js/tests/js1_5/Regress/regress-352202.js +++ b/js/tests/js1_5/Regress/regress-352202.js @@ -54,7 +54,7 @@ function test() var f; f = function() { for ((~x)["y"] in z) { } } - expect = 'function() { for ((~x)["y"] in z) { } }'; + expect = 'function() { for ((~x).y in z) { } }'; actual = f + ''; compareSource(expect, actual, summary);