Browse Source

Now trying to only drop tables at the endo fo the tetsuite

Jose Lorenzo Rodriguez 12 years ago
parent
commit
ae98fc67f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/TestSuite/Fixture/FixtureInjector.php

+ 1 - 1
src/TestSuite/Fixture/FixtureInjector.php

@@ -62,6 +62,7 @@ class FixtureInjector implements PHPUnit_Framework_TestListener {
  * @return void
  */
 	public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
+		$this->_fixtureManager->shutdown();
 	}
 
 /**
@@ -129,7 +130,6 @@ class FixtureInjector implements PHPUnit_Framework_TestListener {
  */
 	public function endTest(PHPUnit_Framework_Test $test, $time) {
 		$this->_fixtureManager->unload($test);
-		$this->_fixtureManager->shutdown();
 	}
 
 /**