X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2FHttpRequest_001.phpt;h=abe65065417eb4a06291abc39e1abcc867b9e208;hb=76ef3c1710bd22c560f9459f00452050d72f44db;hp=ec28bdfbe8f4b516bb1c2ba0ee8a70fb5642ffb8;hpb=6deee2e3d2d6282dd76e3725fe2de6c7833bd57f;p=m6w6%2Fext-http diff --git a/tests/HttpRequest_001.phpt b/tests/HttpRequest_001.phpt index ec28bdf..abe6506 100644 --- a/tests/HttpRequest_001.phpt +++ b/tests/HttpRequest_001.phpt @@ -3,14 +3,14 @@ HttpRequest options --SKIPIF-- --FILE-- 11, 'headers'=>array('X-Foo'=>'Bar'))); $r2 = new HttpRequest; -$r1->setOptions(array('redirect'=>11, 'headers'=>array('X-Foo'=>'Bar'))); $r2->setOptions(array('redirect'=>99, 'headers'=>array('X-Bar'=>'Foo'))); $o1 = $r1->getOptions(); $o2 = $r2->getOptions(); @@ -27,24 +27,24 @@ Array ( [0] => Array ( - [redirect] => 11 [headers] => Array ( [X-Foo] => Bar [X-Bar] => Foo ) + [redirect] => 11 ) [1] => Array ( - [redirect] => 99 [headers] => Array ( [X-Bar] => Foo [X-Foo] => Bar ) + [redirect] => 99 ) )