浏览代码

Whitespace cleanup

Eric Clemmons 14 年之前
父节点
当前提交
693d0cda15
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      tests/Symfony/Tests/Bridge/Doctrine/Form/ChoiceList/EntityChoiceListTest.php

+ 3 - 3
tests/Symfony/Tests/Bridge/Doctrine/Form/ChoiceList/EntityChoiceListTest.php

@@ -40,9 +40,9 @@ class EntityChoiceListTest extends DoctrineOrmTestCase
     {
         $entity1 = new SingleIdentEntity(1, 'Foo');
         $entity2 = new SingleIdentEntity(2, 'Bar');
-    
+
         // no persist here!
-    
+
         $choiceList = new EntityChoiceList(
             $this->em,
             self::SINGLE_IDENT_CLASS,
@@ -53,7 +53,7 @@ class EntityChoiceListTest extends DoctrineOrmTestCase
                 $entity2,
             )
         );
-    
+
         // triggers loading -> exception
         $choiceList->getChoices();
     }