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

Unified Diff: Tools/GardeningServer/ui/ct-results-detail-tests.html

Issue 400423002: Remove base.* methods. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Tools/GardeningServer/scripts/svn-log_unittests.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/ui/ct-results-detail-tests.html
diff --git a/Tools/GardeningServer/ui/ct-results-detail-tests.html b/Tools/GardeningServer/ui/ct-results-detail-tests.html
index b42a2cbe984f2d857c565388c7456f5518178a8b..b233c22f111464a39d28c00cf6683fec8ce4a949 100644
--- a/Tools/GardeningServer/ui/ct-results-detail-tests.html
+++ b/Tools/GardeningServer/ui/ct-results-detail-tests.html
@@ -18,7 +18,7 @@ asyncTest("image+text", 4, function() {
simulator.probe = function(url)
{
probedUrls.push(url);
- if (base.endsWith(url, '.txt') || base.endsWith(url, '.png'))
+ if (url.endsWith('.txt') || url.endsWith('.png'))
return Promise.resolve();
else
return Promise.reject();
@@ -56,7 +56,7 @@ asyncTest("crash", 4, function() {
simulator.probe = function(url)
{
probedUrls.push(url);
- if (base.endsWith(url, '.txt'))
+ if (url.endsWith('.txt'))
return Promise.resolve();
else
return Promise.reject();
« no previous file with comments | « Tools/GardeningServer/scripts/svn-log_unittests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698