Browse Source

Fixed CS issue

José Lorenzo Rodríguez 10 years ago
parent
commit
54e5201ded
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Routing/RouterTest.php

+ 1 - 1
tests/TestCase/Routing/RouterTest.php

@@ -2985,7 +2985,7 @@ class RouterTest extends TestCase
         $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);
     }