diff options
Diffstat (limited to 'ext/zlib/tests/gzinflate_error1.phpt')
-rw-r--r-- | ext/zlib/tests/gzinflate_error1.phpt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/zlib/tests/gzinflate_error1.phpt b/ext/zlib/tests/gzinflate_error1.phpt index 1921afc859..24b929ff9d 100644 --- a/ext/zlib/tests/gzinflate_error1.phpt +++ b/ext/zlib/tests/gzinflate_error1.phpt @@ -1,17 +1,17 @@ --TEST-- Test gzinflate() function : error conditions --SKIPIF-- -<?php +<?php if (!extension_loaded("zlib")) { - print "skip - ZLIB extension not loaded"; -} + print "skip - ZLIB extension not loaded"; +} ?> --FILE-- <?php /* Prototype : string gzinflate(string data [, int length]) * Description: Unzip a gzip-compressed string * Source code: ext/zlib/zlib.c - * Alias to functions: + * Alias to functions: */ include(dirname(__FILE__) . '/data.inc'); @@ -37,7 +37,7 @@ echo "\n-- Testing with incorrect parameters --\n"; class Tester { function Hello() { - echo "Hello\n"; + echo "Hello\n"; } } |