| Index: Tools/GardeningServer/model/ct-failure-group.html
|
| diff --git a/Tools/GardeningServer/model/ct-failure-group.html b/Tools/GardeningServer/model/ct-failure-group.html
|
| index 84d01dc9177f9b3b34157482aece5da39e030ff7..470950c13b8c09a4c2f1394f9d9e460281ddbb73 100644
|
| --- a/Tools/GardeningServer/model/ct-failure-group.html
|
| +++ b/Tools/GardeningServer/model/ct-failure-group.html
|
| @@ -26,6 +26,12 @@ CTFailureGroup.prototype.unsnooze = function() {
|
|
|
| CTFailureGroup.prototype._computeProperties = function() {
|
| this.isSnoozed = Date.now() < this.annotation.snoozeTime;
|
| + if (this.isSnoozed) {
|
| + this.category = 'snoozed';
|
| + } else {
|
| + // FIXME: crbug.com/400397 Split into: Whole step failure, Tree closer, Test failure, Flaky tests
|
| + this.category = 'default';
|
| + }
|
| };
|
|
|
| CTFailureGroup.prototype._annotate = function(newAnnotation) {
|
|
|