From e718c42249f1dc0b03a29046232c19b5dbb3b9cb Mon Sep 17 00:00:00 2001 From: "mrbkap@gmail.com" Date: Thu, 20 Dec 2007 15:46:08 -0800 Subject: [PATCH] Fix this test to deal with the new error that's being thrown. --- js/src/xpconnect/tests/mochitest/test_xow.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/xpconnect/tests/mochitest/test_xow.html b/js/src/xpconnect/tests/mochitest/test_xow.html index 4d3ecda20d3..ad760ffbcf0 100644 --- a/js/src/xpconnect/tests/mochitest/test_xow.html +++ b/js/src/xpconnect/tests/mochitest/test_xow.html @@ -35,7 +35,7 @@ window.__proto__ = origProto; } catch (e) { is(e.toString(), - 'Error: invalid __proto__ value (can only be set to null)', + 'Error: cyclic __proto__ value', 'throw the right exception for a cyclic proto'); is(window.__proto__, origProto, 'reset __proto__ after a cyclic proto'); }