From 2faff9ef4c637987974f585af60455df57328bff Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Mon, 3 Aug 2015 15:29:26 +0200 Subject: [PATCH] fix for travis --- tests/message002.phpt | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tests/message002.phpt b/tests/message002.phpt index e16f8dc..573fdbd 100644 --- a/tests/message002.phpt +++ b/tests/message002.phpt @@ -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 -- 2.30.2