Skip to content

Commit b61d731

Browse files
committed
fix
1 parent 43a4d5e commit b61d731

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/curl/tests/bug76675.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Bug #76675 (Segfault with H2 server push write/writeheader handlers)
44
curl
55
--SKIPIF--
66
<?php
7-
if (!fsockopen("localhost", 443, $errno, $errstr, 0.5)) {
7+
if (!@fsockopen("localhost", 443, $errno, $errstr, 0.5)) {
88
die("skip test needing Caddy");
99
}
1010
$curl_version = curl_version();

ext/curl/tests/bug77535.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Bug #77535 (Invalid callback, h2 server push)
44
curl
55
--SKIPIF--
66
<?php
7-
if (!fsockopen("localhost", 443, $errno, $errstr, 0.5)) {
7+
if (!@fsockopen("localhost", 443, $errno, $errstr, 0.5)) {
88
die("skip test needing Caddy");
99
}
1010
$curl_version = curl_version();

ext/curl/tests/curl_pushfunction.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Test CURLMOPT_PUSHFUNCTION
44
curl
55
--SKIPIF--
66
<?php
7-
if (!fsockopen("localhost", 443, $errno, $errstr, 0.5)) {
7+
if (!@fsockopen("localhost", 443, $errno, $errstr, 0.5)) {
88
die("skip test needing Caddy");
99
}
1010
$curl_version = curl_version();

0 commit comments

Comments
 (0)