| Index: test/mjsunit/external-array.js | 
| diff --git a/test/mjsunit/external-array.js b/test/mjsunit/external-array.js | 
| index 81788d4779e372b665580b34181d8c1bbe16f52b..3fcd544ab69a4b7807393d12eb8fc4bc5b3c98cf 100644 | 
| --- a/test/mjsunit/external-array.js | 
| +++ b/test/mjsunit/external-array.js | 
| @@ -605,7 +605,7 @@ a61.set(a62) | 
| assertArrayPrefix([1, 12], a61) | 
|  | 
| // Invalid source | 
| -a.set(0); // does not throw | 
| +assertThrows(function() { a.set(0); }, TypeError); | 
| assertArrayPrefix([1,2,3,4,5,6], a); | 
| a.set({}); // does not throw | 
| assertArrayPrefix([1,2,3,4,5,6], a); | 
|  |