- made the silently failing message parser raise some errors
[m6w6/ext-http] / tests / exceptions.phpt
index 9fddddd94f00950a65bbddb6bd14ac3d8e2fe8d1..8e9ea5d1cd458c03002778bfbaeb050663563008 100644 (file)
@@ -41,7 +41,7 @@ if (http_support(HTTP_SUPPORT_REQUESTS)) {
                printf("%s (%d)\n", $x->getMessage(), $x->getCode());
        }
 } else {
-       echo "Could not perform request: URL using bad/illegal format or missing URL (8)\n";
+       echo "URL using bad/illegal format or missing URL ((null)) (8)\n";
 }
 echo "Done\n";
 ?>
@@ -59,5 +59,5 @@ echo "Done\n";
 10: HttpSocketException
 11: HttpResponseException
 12: HttpUrlException
-Could not perform request: URL using bad/illegal format or missing URL (8)
+URL using bad/illegal format or missing URL ((null)) (8)
 Done