Selaa lähdekoodia

[BrowserKit] fixed typo

Fabien Potencier 15 vuotta sitten
vanhempi
commit
25b1be725f
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      tests/Symfony/Tests/Components/BrowserKit/ClientTest.php

+ 1 - 1
tests/Symfony/Tests/Components/BrowserKit/ClientTest.php

@@ -266,7 +266,7 @@ RETURN;
     $client = new TestClient();
     $client->request('GET', 'http://www.example.com/foo/foobar');
     $client->reload();
-    $this->assertEquals('http://www.example.com/foo/foobar', $client->getRequest()->getUri(), '->forward() realoads the current page');
+    $this->assertEquals('http://www.example.com/foo/foobar', $client->getRequest()->getUri(), '->forward() reloads the current page');
   }
 
   public function testRestart()