From: Anatoliy Belsky Date: Sat, 23 Nov 2013 10:15:56 +0000 (+0000) Subject: fixed some tests for windows X-Git-Tag: RELEASE_2_0_1~3 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=9b849ab80754093c442139fb7037da9ec1aa3d90 fixed some tests for windows --- diff --git a/tests/envrequestbody003.phpt b/tests/envrequestbody003.phpt index 1aeae79..c2bde83 100644 --- a/tests/envrequestbody003.phpt +++ b/tests/envrequestbody003.phpt @@ -38,7 +38,7 @@ array(1) { ["type"]=> string(0) "" ["tmp_name"]=> - string(14) "%s" + string(%d) "%s" ["error"]=> int(0) ["size"]=> diff --git a/tests/envrequestheader001.phpt b/tests/envrequestheader001.phpt index 5ec5eb7..bfc9ccb 100644 --- a/tests/envrequestheader001.phpt +++ b/tests/envrequestheader001.phpt @@ -13,19 +13,21 @@ HTTP_ACCEPT=*/* var_dump(http\Env::getRequestHeader("nono")); var_dump(http\Env::getRequestHeader("Host")); var_dump(http\Env::getRequestHeader("content-type")); -var_dump(http\Env::getRequestHeader()); +$hdr = http\Env::getRequestHeader(); +ksort($hdr); +var_dump($hdr); ?> --EXPECTF-- NULL string(%d) "foo.bar" string(%d) "application/x-www-form-urlencoded" array(4) { - ["Host"]=> - string(7) "foo.bar" ["Accept"]=> string(3) "*/*" ["Content-Length"]=> string(1) "3" ["Content-Type"]=> string(33) "application/x-www-form-urlencoded" + ["Host"]=> + string(7) "foo.bar" }