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

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

Issue 409063002: Simplify failing builder lists. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: make resultTypes private 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
Index: Tools/GardeningServer/ui/ct-builder-tests.html
diff --git a/Tools/GardeningServer/ui/ct-builder-tests.html b/Tools/GardeningServer/ui/ct-builder-tests.html
index 02caf4ef58932c3b66021677ba8b379ba72b3274..ecd9b45728eee42642f2045c820023f5832f3213 100644
--- a/Tools/GardeningServer/ui/ct-builder-tests.html
+++ b/Tools/GardeningServer/ui/ct-builder-tests.html
@@ -13,14 +13,14 @@ module("ct-builder");
asyncTest("basic", 2, function() {
var builder = document.createElement('ct-builder');
- builder.builderName = 'WebKit Linux (dbg)';
+ builder.builder = 'WebKit Linux (dbg)';
builder.async(function() {
var html = builder.shadowRoot.innerHTML;
var a = builder.shadowRoot.querySelector('a');
ok(a);
- notEqual(a.href.indexOf('WebKit%20Linux%20(dbg)'), -1);
+ notEqual(a.href.indexOf('WebKit+Linux+(dbg)'), -1);
start();
});
@@ -28,13 +28,13 @@ asyncTest("basic", 2, function() {
asyncTest("steps", 3, function() {
var builder = document.createElement('ct-builder');
- builder.builderName = 'WebKit Linux (dbg)';
+ builder.builder = 'WebKit Linux (dbg)';
builder.steps = ['gclient_revert', 'compile', 'unittests'];
builder.async(function() {
var a = builder.shadowRoot.querySelector('a');
ok(a);
- notEqual(a.href.indexOf('WebKit%20Linux%20(dbg)'), -1);
+ notEqual(a.href.indexOf('WebKit+Linux+(dbg)'), -1);
notEqual(a.innerText.indexOf('gclient_revert, compile, unittests'), -1);
start();

Powered by Google App Engine
This is Rietveld 408576698