diff --git a/tests/Symfony/Tests/Components/Console/ApplicationTest.php b/tests/Symfony/Tests/Components/Console/ApplicationTest.php index 62b87738ee..a78bc7aed7 100644 --- a/tests/Symfony/Tests/Components/Console/ApplicationTest.php +++ b/tests/Symfony/Tests/Components/Console/ApplicationTest.php @@ -77,7 +77,7 @@ class ApplicationTest extends \PHPUnit_Framework_TestCase { $application = new Application(); $command = $application->register('foo'); - $this->assertEquals('foo', $command->getName(), '->register() regiters a new command'); + $this->assertEquals('foo', $command->getName(), '->register() registers a new command'); } public function testAddCommand() diff --git a/tests/Symfony/Tests/Components/DependencyInjection/Dumper/XmlDumperTest.php b/tests/Symfony/Tests/Components/DependencyInjection/Dumper/XmlDumperTest.php index f217fc661f..e18b87f2a8 100644 --- a/tests/Symfony/Tests/Components/DependencyInjection/Dumper/XmlDumperTest.php +++ b/tests/Symfony/Tests/Components/DependencyInjection/Dumper/XmlDumperTest.php @@ -32,7 +32,7 @@ class XmlDumperTest extends \PHPUnit_Framework_TestCase $dumper = new XmlDumper($container); } - public function testAddParemeters() + public function testAddParameters() { $container = include self::$fixturesPath.'//containers/container8.php'; $dumper = new XmlDumper($container);