Skip to content

Commit 45231cd

Browse files
committed
Attempted fix
1 parent ed76171 commit 45231cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Feature/BootingTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Wait until port 8100 is open
2424
dump('Waiting for port 8100 to open...');
2525

26-
$fp = @fsockopen('localhost', 8100, $errno, $errstr, 1);
26+
$fp = @fsockopen('127.0.0.1', 8100, $errno, $errstr, 1);
2727
if ($fp === false) {
2828
throw new Exception(sprintf(
2929
'Port 8100 is not open yet. Output: "%s", Errstr: "%s"',

0 commit comments

Comments
 (0)