mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 00:02:40 +01:00
Use a consistent indent depth to display summary test results
Summary: I typed the wrong number of spaces into some of these. Test Plan: Visual inspection, ran 'arc unit' Reviewed By: tuomaspelkonen Reviewers: tuomaspelkonen CC: aran, tuomaspelkonen Differential Revision: 402
This commit is contained in:
parent
fe9daa7ae3
commit
b763cecdb2
1 changed files with 7 additions and 7 deletions
|
@ -122,7 +122,7 @@ EOTEXT
|
|||
if ($result_code == ArcanistUnitTestResult::RESULT_POSTPONED) {
|
||||
$postponed_count++;
|
||||
} else {
|
||||
echo $status_codes[$result_code].' '.$result->getName()."\n";
|
||||
echo ' '.$status_codes[$result_code].' '.$result->getName()."\n";
|
||||
if ($result_code != ArcanistUnitTestResult::RESULT_PASS) {
|
||||
echo $result->getUserData()."\n";
|
||||
$unresolved[] = $result;
|
||||
|
|
Loading…
Reference in a new issue