From 273b24e663592f63a0ceec14b80248722fd26335 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Sat, 10 Apr 2010 17:50:35 +0000 Subject: [PATCH] fixed typo --- tests/Symfony/Tests/Components/Console/ApplicationTest.php | 2 +- .../Components/DependencyInjection/Dumper/XmlDumperTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);