fix bug #64111
[m6w6/ext-http] / phpunit / UrlTest.php
index 3f66e52f018663edc332d3de37be6df8b36db04c..50fa2ff2f0605ae7a9f9a9b6d907804dbdf0c540 100644 (file)
@@ -24,7 +24,7 @@ class UrlTest extends PHPUnit_Framework_TestCase {
                $this->assertEquals("www.example.com", $url->host);
                $this->assertEquals(8080, $url->port);
                $this->assertEquals("/path/changed", $url->path);
-               $this->assertEquals("foo=&more%5B0%5D=1&more%5B1%5D=2&added=this", $url->query);
+               $this->assertEquals("more%5B0%5D=1&more%5B1%5D=2&added=this", $url->query);
         $this->assertEmpty($url->fragment);
     }