| Index: test/mjsunit/es7/object-observe.js
 | 
| diff --git a/test/mjsunit/es7/object-observe.js b/test/mjsunit/es7/object-observe.js
 | 
| index 7bb579f0c1462b6b33ff1bc6c3229067317f2845..20a2d160514ee554a9a091512d309a43a9ccd32a 100644
 | 
| --- a/test/mjsunit/es7/object-observe.js
 | 
| +++ b/test/mjsunit/es7/object-observe.js
 | 
| @@ -1142,7 +1142,8 @@ var properties = ["a", "1", 1, "length", "setPrototype", "name", "caller"];
 | 
|  function blacklisted(obj, prop) {
 | 
|    return (obj instanceof Int32Array && prop == 1) ||
 | 
|           (obj instanceof Int32Array && prop === "length") ||
 | 
| -         (obj instanceof ArrayBuffer && prop == 1)
 | 
| +         (obj instanceof ArrayBuffer && prop == 1) ||
 | 
| +         (obj instanceof Function && prop === "name")
 | 
|  }
 | 
|  
 | 
|  for (var i in objects) for (var j in properties) {
 | 
| 
 |