| Index: Tools/GardeningServer/ui/ct-failure-analyzer.html
|
| diff --git a/Tools/GardeningServer/ui/ct-failure-analyzer.html b/Tools/GardeningServer/ui/ct-failure-analyzer.html
|
| index f31bc4af8cf6c55f313cf59c22008843cefd860b..0af8a855e0713b0e070fcd05a9ec066e9c739fff 100644
|
| --- a/Tools/GardeningServer/ui/ct-failure-analyzer.html
|
| +++ b/Tools/GardeningServer/ui/ct-failure-analyzer.html
|
| @@ -5,6 +5,7 @@ found in the LICENSE file.
|
| -->
|
|
|
| <link rel="import" href="../model/ct-failure.html">
|
| +<link rel="import" href="../model/ct-failure-group.html">
|
|
|
| <polymer-element name="ct-failure-analyzer" attributes="failures builderLatestRevisions">
|
| <script>
|
| @@ -117,7 +118,8 @@ found in the LICENSE file.
|
|
|
| if (!this.failures[tree])
|
| this.failures[tree] = [];
|
| - this.failures[tree].push(failures);
|
| + // FIXME: Pass a snoozetime argument to CTFailureGroup.
|
| + this.failures[tree].push(new CTFailureGroup(group.sort_key, failures));
|
| }.bind(this));
|
| },
|
| });
|
|
|