diff options
Diffstat (limited to 'ext/bz2/tests/003.phpt')
-rw-r--r-- | ext/bz2/tests/003.phpt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/bz2/tests/003.phpt b/ext/bz2/tests/003.phpt index feb806e424..cc5b2a3787 100644 --- a/ext/bz2/tests/003.phpt +++ b/ext/bz2/tests/003.phpt @@ -6,8 +6,6 @@ bzread() tests <?php $fd = bzopen(__DIR__."/003.txt.bz2","r"); -var_dump(bzread()); -var_dump(bzread($fd, 1 ,0)); var_dump(bzread($fd, 0)); var_dump(bzread($fd, -10)); var_dump(bzread($fd, 1)); @@ -17,11 +15,6 @@ var_dump(bzread($fd, 100000)); echo "Done\n"; ?> --EXPECTF-- -Warning: bzread() expects at least 1 parameter, 0 given in %s on line %d -bool(false) - -Warning: bzread() expects at most 2 parameters, 3 given in %s on line %d -bool(false) string(0) "" Warning: bzread(): length may not be negative in %s on line %d |