Skip to content

Commit

Permalink
fix(coverage): restore very-good status
Browse files Browse the repository at this point in the history
fix #309
  • Loading branch information
vogloblinsky committed Sep 15, 2017
1 parent 996a618 commit 37d1965
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -5430,7 +5430,7 @@ var Application = /** @class */ (function () {
status = 'good';
}
else {
status = 'good';
status = 'very-good';
}
return status;
}, processComponentsAndDirectives = function (list) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5430,7 +5430,7 @@ var Application = /** @class */ (function () {
status = 'good';
}
else {
status = 'good';
status = 'very-good';
}
return status;
}, processComponentsAndDirectives = function (list) {
Expand Down
2 changes: 1 addition & 1 deletion src/app/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ export class Application {
} else if (percent > 50 && percent <= 75) {
status = 'good';
} else {
status = 'good';
status = 'very-good';
}
return status;
},
Expand Down

0 comments on commit 37d1965

Please sign in to comment.