Skip to content

Commit 4c4d154

Browse files
committed
Merge branch '7.1' into 7.2
* 7.1: fix compatibility with Redis Relay 0.8.1 use more entropy with uniqid() [Cache] Improve `dbindex` DSN parameter parsing Support for PHP-CS-Fixer's parallel runner use more entropy with uniqid() add tests for TypeInfo types [Contracts][HttpClient] Skip tests when zlib's `ob_gzhandler()` doesn't exist [Serializer] Raise correct exception in ArrayDenormalizer
2 parents 381ca9f + 55d40d0 commit 4c4d154

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

HttpClient/Test/HttpClientTestCase.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ abstract class HttpClientTestCase extends TestCase
2525
{
2626
public static function setUpBeforeClass(): void
2727
{
28+
if (!function_exists('ob_gzhandler')) {
29+
static::markTestSkipped('The "ob_gzhandler" function is not available.');
30+
}
31+
2832
TestHttpServer::start();
2933
}
3034

0 commit comments

Comments
 (0)