Correct two zlib tests to use a string, not a const

This commit is contained in:
Tim Siebels 2014-09-12 15:04:32 +02:00 committed by Stanislav Malyshev
parent 03dcf66f9a
commit 5351ecbfca
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Test function gzfile() by substituting argument 1 with float values.
--SKIPIF--
<?php
if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build');
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
?>
--FILE--
<?php

View File

@ -2,7 +2,7 @@
Test function readgzfile() by substituting argument 1 with float values.
--SKIPIF--
<?php
if (!extension_loaded(zlib)) die ('skip zlib extension not available in this build');
if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build');
?>
--FILE--
<?php