From a952988be00271e2bea3aef5351f505fa662dd26 Mon Sep 17 00:00:00 2001 From: Arnaud Le Blanc Date: Wed, 3 Jul 2024 16:12:57 +0200 Subject: [PATCH] Fix test race condition --- ext/openssl/tests/gh13860.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/openssl/tests/gh13860.phpt b/ext/openssl/tests/gh13860.phpt index 0b52e0e0583ab..aff0df15cca95 100644 --- a/ext/openssl/tests/gh13860.phpt +++ b/ext/openssl/tests/gh13860.phpt @@ -18,8 +18,8 @@ $serverCode = <<<'CODE' $client = @stream_socket_accept($server); if ($client) { - fwrite($client, "xx"); phpt_wait(); + fwrite($client, "xx"); fclose($client); phpt_notify(); }