X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2FHttpRequestPool_005.phpt;h=79c3b0d59378c234f8db9db9fb75ae8df8578081;hb=4e2ecc5ed84649ce20fd1f11319626e0b1befa0a;hp=19782674df6f933656d636493f4f4a7362416bab;hpb=33b7c5dcd9cffebb8486cb57e04958e34bbfe662;p=m6w6%2Fext-http diff --git a/tests/HttpRequestPool_005.phpt b/tests/HttpRequestPool_005.phpt index 1978267..79c3b0d 100644 --- a/tests/HttpRequestPool_005.phpt +++ b/tests/HttpRequestPool_005.phpt @@ -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