From: Greg Beaver Date: Wed, 16 Apr 2008 20:08:02 +0000 (+0000) Subject: fix large zip test X-Git-Tag: RELEASE_2_0_0b1~343 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31e66298953a5938a9a94864a14e97545b3b3445;p=php fix large zip test --- diff --git a/ext/phar/tests/zip/largezip.phpt b/ext/phar/tests/zip/largezip.phpt index 93cbaca256..a8438eb7b7 100644 --- a/ext/phar/tests/zip/largezip.phpt +++ b/ext/phar/tests/zip/largezip.phpt @@ -18,12 +18,12 @@ $p['big2'] = str_repeat(str_repeat('hi', 100), 1000); copy($fname, $fname2); $p2 = new Phar($fname2); -var_dump(strlen($p2['big'])); +var_dump(strlen($p2['big']->getContent())); ?> ===DONE=== --CLEAN-- --EXPECT-- -int(100000) +int(200000) ===DONE===