Index: test/mjsunit/harmony/array-from.js |
diff --git a/test/mjsunit/harmony/array-from.js b/test/mjsunit/harmony/array-from.js |
index e7c9fef7d5d8a3826451e1c9d6fb133af26060cc..e8dde163fc227bb21bdeaab6d14ff944cec65b96 100644 |
--- a/test/mjsunit/harmony/array-from.js |
+++ b/test/mjsunit/harmony/array-from.js |
@@ -118,6 +118,7 @@ testArrayFrom({}, Array); |
testArrayFrom(Object, Object); |
testArrayFrom(Other, Other); |
testArrayFrom(Math.cos, Array); |
-testArrayFrom(boundFn, Array); |
+testArrayFrom(Math.cos.bind(Math), Array); |
+testArrayFrom(boundFn, boundFn); |
})(); |