| 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();
|
|
|