release 2.1.6
[m6w6/ext-pq] / tests / lob001.phpt
index 990d6f02a774e7df01f94afa845ce6e4985e35d9..19587e1e2d37c15eb458d0c358c13adbc79f8799 100644 (file)
@@ -20,7 +20,7 @@ var_dump($lob->tell());
 
 $lob->seek(0, SEEK_SET);
 $dat = $lob->read(filesize(__FILE__));
-var_dump(hash("md5", $dat)==hash_file("md5", __FILE__));
+var_dump(md5($dat)===md5_file(__FILE__));
 
 $lob->truncate(5);
 
@@ -35,7 +35,7 @@ DONE
 --EXPECTF--
 Test
 bool(true)
-int(489)
+int(474)
 bool(true)
 string(5) "%c?php"
 DONE