| Index: test/mjsunit/regress/regress-95920.js
|
| diff --git a/test/mjsunit/regress/regress-95920.js b/test/mjsunit/regress/regress-95920.js
|
| index 20e73fbc4026c3969877b6d2e5850d7d2fb2c5c6..8e580c2726eac282c939f07b9da7c8ddd27c425e 100644
|
| --- a/test/mjsunit/regress/regress-95920.js
|
| +++ b/test/mjsunit/regress/regress-95920.js
|
| @@ -32,21 +32,21 @@
|
| assertThrows(function() {
|
| [0].every(function(){ Object.seal((new Int8Array(42))); });
|
| assertUnreable();
|
| - }, TypeError)
|
| + }, TypeError);
|
| })();
|
|
|
| (function() {
|
| assertThrows(function() {
|
| [0].every(function(){ Object.freeze((new Int8Array(42))); });
|
| assertUnreable();
|
| - }, TypeError)
|
| + }, TypeError);
|
| })();
|
|
|
| (function() {
|
| assertThrows(function() {
|
| [0].every(function(){ Object.preventExtensions((new Int8Array(42))); });
|
| assertUnreable();
|
| - }, TypeError)
|
| + }, TypeError);
|
| })();
|
|
|
| (function() {
|
| @@ -54,5 +54,5 @@
|
| Object.defineProperty(new Int8Array(42), "1",
|
| { writable: false, value: "1" });
|
| assertUnreable();
|
| - })
|
| + });
|
| })();
|
|
|