Skip to content

Commit

Permalink
Reduce noise in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Pete Bishop committed Feb 5, 2025
1 parent 8005f3e commit ac7324b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/BootingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
try {
retry(30, function () use (&$output, &$port) {
// Check ports from 8100 to 9000

dump("Checking ports 8100-9000...");
for ($p = 8100; $p <= 9000; $p++) {
dump("Checking port $p...");

$fp = @fsockopen('localhost', $p, $errno, $errstr, 1);
if ($fp !== false) {
Expand Down

0 comments on commit ac7324b

Please sign in to comment.