fix lint error

This commit is contained in:
Damodar Lohani
2023-02-13 06:26:36 +00:00
parent da873b2876
commit 488d3ec7e8
+1 -1
View File
@@ -16,7 +16,7 @@ class TestHook implements AfterTestHook
$time * 1000
);
if($time > self::MAX_SECONDS_ALLOWED) {
if ($time > self::MAX_SECONDS_ALLOWED) {
fwrite(STDOUT, sprintf("\e[31mThe %s test is slow, it took %s seconds!\n\e[0m", $test, $time));
}
}