Merge pull request #245 from evilbloodydemon/remove-cr-flush

Removed unnecessary ClassRegistry::flush() from test template.
This commit is contained in:
Mark Story 2011-10-12 09:23:01 -07:00
commit 648a1f7dec

View file

@ -81,7 +81,6 @@ class <?php echo $fullClassName; ?>TestCase extends CakeTestCase {
*/ */
public function tearDown() { public function tearDown() {
unset($this-><?php echo $className;?>); unset($this-><?php echo $className;?>);
ClassRegistry::flush();
parent::tearDown(); parent::tearDown();
} }