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

Commit 086c8c2

Browse files
authored
Merge pull request #44 from alexpts/patch-1
Unload fixture in tearDown
2 parents 76fdd68 + 7e29138 commit 086c8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ protected function setUp()
8282
{
8383
parent::setUp();
8484
$this->mockApplication();
85-
$this->unloadFixtures();
8685
$this->loadFixtures();
8786
}
8887

@@ -91,6 +90,7 @@ protected function setUp()
9190
*/
9291
protected function tearDown()
9392
{
93+
$this->unloadFixtures();
9494
$this->destroyApplication();
9595
parent::tearDown();
9696
}

0 commit comments

Comments
 (0)