fix for travis
authorMichael Wallner <mike@php.net>
Mon, 3 Aug 2015 13:29:26 +0000 (15:29 +0200)
committerMichael Wallner <mike@php.net>
Mon, 3 Aug 2015 13:29:26 +0000 (15:29 +0200)
tests/message002.phpt

index e16f8dc97359741c01b5b2a07d4e4331acdc892e..573fdbd8a9ded3106f72c0a1f0f4ffdff8f038b1 100644 (file)
@@ -19,6 +19,11 @@ use http\env\Request as HttpEnvRequest;
 
 $m = new HttpEnvRequest();
 
+// travis' env headers have another order, wtf?
+$h = $m->getHeaders();
+ksort($h);
+$m->setHeaders($h);
+
 var_dump($m);
 
 echo "Message->toString\n";
@@ -50,14 +55,14 @@ object(%s)#%d (13) {
   string(3) "1.1"
   ["headers":protected]=>
   array(4) {
-    ["X-Test"]=>
-    string(4) "test"
     ["Content-Length"]=>
     string(1) "3"
     ["Content-Type"]=>
     string(14) "test/something"
     ["Cookie"]=>
     string(7) "foo=bar"
+    ["X-Test"]=>
+    string(4) "test"
   }
   ["parentMessage":protected]=>
   NULL
@@ -87,10 +92,10 @@ object(%s)#%d (13) {
 }
 Message->toString
 POST / HTTP/1.1%a
-X-Test: test%a
 Content-Length: 3%a
 Content-Type: test/something%a
 Cookie: foo=bar%a
+X-Test: test%a
 %a
 b=c
 Body->toString