From b03388293fc934eb04f188aca228fa145cb83fa9 Mon Sep 17 00:00:00 2001 From: "Fabio B. Silva" Date: Sat, 20 Oct 2012 15:44:09 -0300 Subject: [PATCH] Fix typo --- tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php b/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php index ca8c9de55..da7173165 100644 --- a/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php +++ b/tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php @@ -310,8 +310,8 @@ class EntityGeneratorTest extends \Doctrine\Tests\OrmTestCase $this->assertFileExists($filename); require_once $filename; - $propertu = new \ReflectionProperty($metadata->name, 'centroCustos'); - $docComment = $propertu->getDocComment(); + $property = new \ReflectionProperty($metadata->name, 'centroCustos'); + $docComment = $property->getDocComment(); //joinColumns $this->assertContains('@JoinColumn(name="idorcamento", referencedColumnName="idorcamento"),', $docComment);