| Index: Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
|
| diff --git a/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html b/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
|
| index 6c89c9f400ee11e2bd52aab24dbc957b61a914a1..1075fd338c1f9d5318c096e2b079f20f790cb1f6 100644
|
| --- a/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
|
| +++ b/Tools/GardeningServer/model/ct-sheriff-failure-group-data.html
|
| @@ -4,12 +4,14 @@ Use of this source code is governed by a BSD-style license that can be
|
| found in the LICENSE file.
|
| -->
|
|
|
| +<link rel="import" href="ct-builder-list.html">
|
| <link rel="import" href="ct-commit-list.html">
|
|
|
| <script>
|
| function CTSheriffFailureGroupData(failures, commitList) {
|
| this.failures = failures;
|
| this.commitList = commitList;
|
| + this.builderList = new CTBuilderList(failures);
|
| this.category = 'sheriff';
|
| };
|
|
|
| @@ -40,5 +42,5 @@ CTSheriffFailureGroupData.prototype.failedOnce = function() {
|
| }
|
| }
|
| return totalFailures == 1;
|
| -}
|
| +};
|
| </script>
|
|
|