fixed some tests for windows
[m6w6/ext-http] / tests / envrequestheader001.phpt
index 5ec5eb7373e4a5670c0091274038dbfad4247996..bfc9ccbd3db4c81e9f36c3af4b92e23e0826cd3e 100644 (file)
@@ -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"
 }