mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-30 01:10:58 +01:00
Improved warning message when accepting diff with skipped lint or unit
Summary: Some people find the current message stating "This diff has Lint/Unit Test Problems" confusing if the unit tests or lint was skipped. This revision clarifies those messages. Test Plan: Started to accept a revision with skipped lint and unit tests, and saw the new message. Reviewers: epriestley, btrahan, jungejason Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1738
This commit is contained in:
parent
4c8f405fcc
commit
5042667b96
1 changed files with 13 additions and 3 deletions
|
@ -149,9 +149,15 @@ final class DifferentialAddCommentView extends AphrontView {
|
|||
DifferentialLintStatus::LINT_FAIL => 'Lint Failure',
|
||||
DifferentialLintStatus::LINT_SKIP => 'Lint Skipped'
|
||||
);
|
||||
$content =
|
||||
"<p>This diff has Lint Problems. Make sure you are OK with them ".
|
||||
"before you accept this diff.</p>";
|
||||
if ($diff->getLintStatus() == DifferentialLintStatus::LINT_SKIP) {
|
||||
$content =
|
||||
"<p>This diff was created without running lint. Make sure you are ".
|
||||
"OK with that before you accept this diff.</p>";
|
||||
} else {
|
||||
$content =
|
||||
"<p>This diff has Lint Problems. Make sure you are OK with them ".
|
||||
"before you accept this diff.</p>";
|
||||
}
|
||||
$lint_warning = $this->generateWarningView(
|
||||
$diff->getLintStatus(),
|
||||
$titles,
|
||||
|
@ -172,6 +178,10 @@ final class DifferentialAddCommentView extends AphrontView {
|
|||
"<p>This diff has postponed unit tests. The results should be ".
|
||||
"coming in soon. You should probably wait for them before accepting ".
|
||||
"this diff.</p>";
|
||||
} else if ($diff->getUnitStatus() == DifferentialUnitStatus::UNIT_SKIP) {
|
||||
$content =
|
||||
"<p>Unit tests were skipped when this diff was created. Make sure ".
|
||||
"you are OK with that before you accept this diff.</p>";
|
||||
} else {
|
||||
$content =
|
||||
"<p>This diff has Unit Test Problems. Make sure you are OK with ".
|
||||
|
|
Loading…
Reference in a new issue