We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c4859 commit 4473f76Copy full SHA for 4473f76
src/SpeedTrap.php
@@ -195,7 +195,7 @@ protected function getHiddenCount(): int
195
*/
196
protected function renderHeader(): void
197
{
198
- echo sprintf("\n\nYou should really speed up these slow tests (>%sms)\n", $this->slowThreshold);
+ echo sprintf("\n\nThe following tests were detected as slow (>%sms)\n", $this->slowThreshold);
199
}
200
201
/**
@@ -221,7 +221,7 @@ protected function renderBody(): void
221
protected function renderFooter(): void
222
223
if ($hidden = $this->getHiddenCount()) {
224
- printf("and there %s %s more above your threshold hidden from view\n", $hidden == 1 ? 'is' : 'are', $hidden);
+ printf("and %s more slow tests hidden from view\n", $hidden);
225
226
227
0 commit comments