浏览代码

Only dropping tables and the conneciton when tehre are no nested
testsuites

Jose Lorenzo Rodriguez 12 年之前
父节点
当前提交
cb6f17d3d3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/TestSuite/Fixture/FixtureInjector.php

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

@@ -78,8 +78,8 @@ class FixtureInjector implements PHPUnit_Framework_TestListener {
  */
 	public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
 		$this->_nesting--;
-		$this->_fixtureManager->shutdown();
 		if (!$this->_nesting) {
+			$this->_fixtureManager->shutdown();
 			$config = ConnectionManager::config('test');
 			ConnectionManager::drop('test');
 			ConnectionManager::config('test', $config);