Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: test/mjsunit/es6/proxies-function.js

Issue 2663803002: [string] Migrate String.prototype.{split,replace} to TF (Closed)
Patch Set: Address comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 })

Powered by Google App Engine
This is Rietveld 408576698