Browse Source

Remove empty space to match code standards

Mathieu de Ruiter 10 years ago
parent
commit
2dff1a1f25
1 changed files with 1 additions and 2 deletions
  1. 1 2
      tests/TestCase/Routing/RouterTest.php

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

@@ -98,7 +98,7 @@ class RouterTest extends TestCase
     }
 
     /**
-     * Test that Router used the correct url including base path for requesting current actions.
+     * Test that Router uses the correct url including base path for requesting the current actions.
      *
      * @return void
      */
@@ -117,7 +117,6 @@ class RouterTest extends TestCase
         Router::setRequestInfo($request);
         $this->assertEquals('http://example.com/cakephp/pages/view/1', Router::url(null, true));
         $this->assertEquals('/cakephp/pages/view/1', Router::url());
-
     }
 
     /**