| Index: test/mjsunit/es6/typedarray.js
|
| diff --git a/test/mjsunit/es6/typedarray.js b/test/mjsunit/es6/typedarray.js
|
| index 563ee66e1dd851b913976c0907e2bafcfee34b21..e6a949ca59f808fb5a5cc6895bb17a1239551c99 100644
|
| --- a/test/mjsunit/es6/typedarray.js
|
| +++ b/test/mjsunit/es6/typedarray.js
|
| @@ -674,7 +674,6 @@ function TestDataViewConstructor() {
|
|
|
| // error cases
|
| assertThrows(function() { new DataView(ab, -1); }, RangeError);
|
| - assertThrows(function() { new DataView(ab, 1, -1); }, RangeError);
|
| assertThrows(function() { new DataView(); }, TypeError);
|
| assertThrows(function() { new DataView([]); }, TypeError);
|
| assertThrows(function() { new DataView(ab, 257); }, RangeError);
|
|
|