Skip to content

Commit

Permalink
Fix wonky tabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jan 28, 2012
1 parent 3b9f880 commit fb7717c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Console/Templates/default/classes/test.ctp
Expand Up @@ -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 : ''; ?>
}

/**
Expand Down

0 comments on commit fb7717c

Please sign in to comment.