| Index: test/mjsunit/es6/proxies-function.js
|
| diff --git a/test/mjsunit/es6/proxies-function.js b/test/mjsunit/es6/proxies-function.js
|
| index cb3a26c535451c027a7093f3b6ad8a1cffc79c54..8db1200df1539bf7b05c291e3dc3f55feb5c11b3 100644
|
| --- a/test/mjsunit/es6/proxies-function.js
|
| +++ b/test/mjsunit/es6/proxies-function.js
|
| @@ -471,7 +471,6 @@ function TestHigherOrder(f) {
|
| assertEquals(6, [6, 2].map(f)[0])
|
| assertEquals(4, [5, 2].reduce(f, 4))
|
| assertTrue([1, 2].some(f))
|
| - assertEquals("a.b.c", "a.b.c".replace(".", f))
|
| }
|
|
|
| TestHigherOrder(function(x) { return x })
|
|
|