| Index: test/mjsunit/compiler/regress-447567.js
|
| diff --git a/test/mjsunit/compiler/regress-447567.js b/test/mjsunit/compiler/regress-447567.js
|
| index c348debee25fe3b3a909e163998b85088d605902..7aaada02c7fa4c6e8651c5288ebacabb570277ae 100644
|
| --- a/test/mjsunit/compiler/regress-447567.js
|
| +++ b/test/mjsunit/compiler/regress-447567.js
|
| @@ -2,9 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -assertThrows(function() {
|
| - [0].every(function(){ Object.seal((new Int8Array())); });
|
| -})
|
| +assertThrows(function () {
|
| + Object.freeze(new Int8Array(1))
|
| +});
|
|
|
| assertThrows(function() {
|
| "use strict";
|
|
|