diff --git a/extensions/codeception/TestCase.php b/extensions/codeception/TestCase.php index a810cb6e51..fa51d88de4 100644 --- a/extensions/codeception/TestCase.php +++ b/extensions/codeception/TestCase.php @@ -80,7 +80,6 @@ class TestCase extends Test { parent::setUp(); $this->mockApplication(); - $this->unloadFixtures(); $this->loadFixtures(); } @@ -90,6 +89,7 @@ class TestCase extends Test protected function tearDown() { $this->destroyApplication(); + $this->unloadFixtures(); parent::tearDown(); }