Skip to content

Commit 24ac417

Browse files
Merge branch '6.4' into 7.0
* 6.4: Fix CI Bump ext-redis in CI on PHP >= 8.4 Adjust pretty name of closures on PHP 8.4 implement NodeVisitorInterface instead of extending AbstractNodeVisitor sync .github/expected-missing-return-types.diff skip test assertions that are no longer valid with PHP >= 8.2.18/8.3.5
2 parents 5c05236 + 3c5cce2 commit 24ac417

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/FilesystemTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,14 @@ public function testCopyForOriginUrlsAndExistingLocalFileDefaultsToCopy()
171171
}
172172

173173
$finder = new PhpExecutableFinder();
174-
$process = new Process(array_merge([$finder->find(false)], $finder->findArguments(), ['-dopcache.enable=0', '-dvariables_order=EGPCS', '-S', '127.0.0.1:8057']));
174+
$process = new Process(array_merge([$finder->find(false)], $finder->findArguments(), ['-dopcache.enable=0', '-dvariables_order=EGPCS', '-S', 'localhost:8057']));
175175
$process->setWorkingDirectory(__DIR__.'/Fixtures/web');
176176

177177
$process->start();
178178

179179
do {
180180
usleep(50000);
181-
} while (!@fopen('http://127.0.0.1:8057', 'r'));
181+
} while (!@fopen('http://localhost:8057', 'r'));
182182

183183
try {
184184
$sourceFilePath = 'http://localhost:8057/logo_symfony_header.png';

0 commit comments

Comments
 (0)