- I thought I already fixed them
[m6w6/ext-http] / tests / HttpRequestPool_001.phpt
index 0b276b8b7c23e66d9dcb4aff75f6499ece8bba32..8c1b05be4ace27a2be8e39f1039fd1fd6d488a7e 100644 (file)
@@ -10,6 +10,7 @@ checkurl('pecl.php.net');
 ?>
 --FILE--
 <?php
+echo "-TEST\n";
 $pool = new HttpRequestPool(
     new HttpRequest('http://www.php.net/', HTTP_HEAD),
     new HttpRequest('http://pear.php.net/', HTTP_HEAD),
@@ -24,7 +25,8 @@ foreach ($pool as $req) {
 echo "Done\n";
 ?>
 --EXPECTF--
-%shttp://www.php.net/=200:200
+%sTEST
+http://www.php.net/=200:200
 http://pear.php.net/=200:200
 http://pecl.php.net/=200:200
 Done