summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzseek_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/zlib/tests/gzseek_basic.phpt')
-rw-r--r--ext/zlib/tests/gzseek_basic.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/zlib/tests/gzseek_basic.phpt b/ext/zlib/tests/gzseek_basic.phpt
index d641bad429..2f0b5ae451 100644
--- a/ext/zlib/tests/gzseek_basic.phpt
+++ b/ext/zlib/tests/gzseek_basic.phpt
@@ -1,15 +1,15 @@
--TEST--
Test function gzseek() by calling it with its expected arguments when reading
--SKIPIF--
-<?php
+<?php
if (!extension_loaded("zlib")) {
- print "skip - ZLIB extension not loaded";
+ print "skip - ZLIB extension not loaded";
}
?>
--FILE--
<?php
$f = dirname(__FILE__)."/004.txt.gz";
-$h = gzopen($f, 'r');
+$h = gzopen($f, 'r');
echo "move to the 50th byte\n";
var_dump(gzseek( $h, 50 ) );