X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Fclient022.phpt;h=434135107ae6215597fd63dd5a6d78886581791f;hp=255de083bb3522a2df2751795c2e5943963802dd;hb=a781e1173974f92770c9fbdc6d47e0bf098cfc3f;hpb=7b3c686de9ef70f2124136b5a1b8dffa7602a4d7 diff --git a/tests/client022.phpt b/tests/client022.phpt index 255de08..4341351 100644 --- a/tests/client022.phpt +++ b/tests/client022.phpt @@ -19,9 +19,12 @@ nghttpd(function($port) { "protocol" => http\Client\Curl\HTTP_VERSION_2_0, "ssl" => [ "cainfo" => __DIR__."/helper/http2.crt", + "verifypeer" => false, // needed for NSS without PEM support ] ]); - $client->enqueue(new http\Client\Request("GET", "https://localhost:$port")); + + $request = new http\Client\Request("GET", "https://localhost:$port"); + $client->enqueue($request); echo $client->send()->getResponse(); }); @@ -29,7 +32,7 @@ nghttpd(function($port) { ===DONE=== --EXPECTF-- Test -HTTP/2.0 200 +HTTP/2 200 %a