Skip to content
This repository was archived by the owner on Sep 24, 2018. It is now read-only.

Unload fixture in tearDown #44

Merged
merged 1 commit into from
May 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ protected function setUp()
{
parent::setUp();
$this->mockApplication();
$this->unloadFixtures();
$this->loadFixtures();
}

Expand All @@ -91,6 +90,7 @@ protected function setUp()
*/
protected function tearDown()
{
$this->unloadFixtures();
$this->destroyApplication();
parent::tearDown();
}
Expand Down