Index: test/mjsunit/regress/regress-1213575.js |
diff --git a/test/mjsunit/regress/regress-1213575.js b/test/mjsunit/regress/regress-1213575.js |
index 0c3dcc28c60432f0dd7b8938bddac51e21a8f0b3..ff71de4812e7cf09abf87c577e17905fab65a569 100644 |
--- a/test/mjsunit/regress/regress-1213575.js |
+++ b/test/mjsunit/regress/regress-1213575.js |
@@ -25,9 +25,8 @@ |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-// Make sure that a const definition always |
-// conflicts with a defined setter. This avoid |
-// trying to pass 'the hole' to the setter. |
+// Make sure that a const definition does not try |
+// to pass 'the hole' to a defined setter. |
this.__defineSetter__('x', function(value) { assertTrue(false); }); |
@@ -38,4 +37,4 @@ try { |
assertTrue(e instanceof TypeError); |
caught = true; |
} |
-assertTrue(caught); |
+assertFalse(caught); |