From a9a56e238734c3a1d596538197b1f6eae553dbf3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 14 Mar 2011 13:59:09 +0100 Subject: [PATCH] [DoctrineBundle] fixed a unit test --- .../DoctrineBundle/Tests/Command/InfoDoctrineCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/DoctrineBundle/Tests/Command/InfoDoctrineCommandTest.php b/src/Symfony/Bundle/DoctrineBundle/Tests/Command/InfoDoctrineCommandTest.php index cfb7b4baff..86d34d6486 100644 --- a/src/Symfony/Bundle/DoctrineBundle/Tests/Command/InfoDoctrineCommandTest.php +++ b/src/Symfony/Bundle/DoctrineBundle/Tests/Command/InfoDoctrineCommandTest.php @@ -17,7 +17,7 @@ class InfoDoctrineCommandTest extends TestCase $output = $this->getMock('Symfony\Component\Console\Output\OutputInterface'); $output->expects($this->at(0)) ->method('write') - ->with($this->equalTo("Found 1 entities mapped in entity manager 'default':"), $this->equalTo(true)); + ->with($this->equalTo("Found 1 entities mapped in entity manager default:\n"), $this->equalTo(true)); $output->expects($this->at(1)) ->method('write') ->with($this->equalTo("[OK] Fixtures\Bundles\YamlBundle\Entity\Test"), $this->equalTo(true));