Skip to content

Commit

Permalink
Fixed CS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Feb 22, 2016
1 parent 6207835 commit 54e5201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Routing/RouterTest.php
Expand Up @@ -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);
}
Expand Down

0 comments on commit 54e5201

Please sign in to comment.