From 951b2875d85952ed555103fa5fdb9bf8feac833a Mon Sep 17 00:00:00 2001
From: zYne <zYne@625475ce-881a-0410-a577-b389adb331d8>
Date: Sat, 1 Sep 2007 10:55:14 +0000
Subject: [PATCH] formatting fix

---
 tests/ColumnAggregationInheritanceTestCase.php | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/tests/ColumnAggregationInheritanceTestCase.php b/tests/ColumnAggregationInheritanceTestCase.php
index 6a04c62d6..4fc5f9c92 100644
--- a/tests/ColumnAggregationInheritanceTestCase.php
+++ b/tests/ColumnAggregationInheritanceTestCase.php
@@ -72,12 +72,13 @@ class Doctrine_ColumnAggregationInheritance_TestCase extends Doctrine_UnitTestCa
         $this->assertEqual($q->getSql(), "SELECT i.id AS i__id, i.name AS i__name, i.type AS i__type FROM inheritance_test i WHERE (i.type = 'type 1')");
     }
 
-		public function testSubclassFieldSetWhenCreatingNewSubclassedRecord()
-		{
-  			$child = new InheritanceChildTest();
-			  $this->assertTrue(isset($child->type));
-				$this->assertEqual("type 1", $child->type);
-		}
+    public function testSubclassFieldSetWhenCreatingNewSubclassedRecord()
+    {
+        $child = new InheritanceChildTest();
+        $this->assertTrue(isset($child->type));
+
+        $this->assertEqual('type 1', $child->type);
+    }
 }
 class InheritanceTest extends Doctrine_Record
 {