Test improv

This commit is contained in:
James Cole
2020-10-18 08:01:22 +02:00
parent 2630732b8a
commit 4c10f2b960
7 changed files with 129 additions and 5 deletions

View File

@@ -76,7 +76,8 @@ class FixLongDescriptions extends Command
}
}
$end = round(microtime(true) - $start, 2);
$this->info(sprintf('Verified all transaction group and journal title lengths in %s seconds.', $end));
$this->info('Verified all transaction group and journal title lengths.');
$this->info(sprintf('Took %s seconds.', $end));
return 0;
}

View File

@@ -68,7 +68,7 @@ class FixRecurringTransactions extends Command
$end = round(microtime(true) - $start, 2);
$this->info(sprintf('Corrected recurring transactions %s seconds.', $end));
$this->info(sprintf('Corrected recurring transactions in %s seconds.', $end));
return 0;
}