Fix wonky tabs.

This commit is contained in:
mark_story 2012-01-26 22:59:26 -05:00
parent 3b9f88030e
commit fb7717c0da

View file

@ -71,9 +71,9 @@ class <?php echo $fullClassName; ?>TestCase extends CakeTestCase {
*/
public function setUp() {
parent::setUp();
<?php echo $preConstruct; ?>
<?php echo $preConstruct ? "\t\t" . $preConstruct : ''; ?>
$this-><?php echo $className . ' = ' . $construction; ?>
<?php echo $postConstruct; ?>
<?php echo $postConstruct ? "\t\t" . $postConstruct : ''; ?>
}
/**