- avoid NULL urls
[m6w6/ext-http] / tests / HttpRequestPool_005.phpt
index 19782674df6f933656d636493f4f4a7362416bab..79c3b0d59378c234f8db9db9fb75ae8df8578081 100644 (file)
@@ -22,26 +22,11 @@ try {
 } catch (HttpRequestPoolException $x) {
        var_dump(count($x->exceptionStack));
 }
-
-try {
-       $p = new HttpRequestPool(new HttpRequest);
-} catch (HttpRequestPoolException $x) {
-       var_dump(count($x->exceptionStack));
-}
-
-try {
-       $p = new HttpRequestPool(new HttpRequest, new HttpRequest);
-} catch (HttpRequestPoolException $x) {
-       var_dump(count($x->exceptionStack));
-}
-
 echo "Done\n";
 ?>
 --EXPECTF--
 %sTEST
 int(2)
 int(4)
-int(1)
-int(2)
 Done