diff --git a/tests/TestCase/Routing/RouterTest.php b/tests/TestCase/Routing/RouterTest.php index 43fba41e26d..e31db1ae575 100644 --- a/tests/TestCase/Routing/RouterTest.php +++ b/tests/TestCase/Routing/RouterTest.php @@ -2985,7 +2985,7 @@ public function testUrlWithCollidingQueryString() $result = Router::url(['controller' => 'posts', 'action' => 'view', 'id' => 1, '?' => $query]); $this->assertEquals('/posts/view/1?controller=Foo&action=bar&id=100', $result); - $query = ['_host' => 'foo.bar' , '_ssl' => 0, '_scheme' => 'ftp://', '_base' => 'baz', '_port' => '15']; + $query = ['_host' => 'foo.bar', '_ssl' => 0, '_scheme' => 'ftp://', '_base' => 'baz', '_port' => '15']; $result = Router::url(['controller' => 'posts', 'action' => 'view', 'id' => 1, '?' => $query]); $this->assertEquals('/posts/view/1?_host=foo.bar&_ssl=0&_scheme=ftp%3A%2F%2F&_base=baz&_port=15', $result); }