- improve internal array handling
[m6w6/ext-http] / tests / ut_HttpUtil.phpt
index 3c5f70ad36ef1a631655374772f07f189d0e6c2c..6bf6e2e9177004916bc2890ba45b118f1a3b199b 100644 (file)
@@ -100,7 +100,7 @@ class HttpUtilTest extends PHPUnit2_Framework_TestCase
     function test_zlib()
     {
        if ($support = http_support(HTTP_SUPPORT_ENCODINGS)) {
-               $this->assertEquals(file_get_contents(__FILE__), http_gzdecode(http_gzencode(file_get_contents(__FILE__))));
+               $this->assertEquals(file_get_contents(__FILE__), http_inflate(http_deflate(file_get_contents(__FILE__), HTTP_DEFLATE_TYPE_GZIP)));
                $this->assertEquals(file_get_contents(__FILE__), http_inflate(http_deflate(file_get_contents(__FILE__))));
                } else {
                        $this->assertFalse($support);