Skip to content

Commit

Permalink
refs #4903 this might fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Mar 26, 2014
1 parent 42ff0ac commit 25c3a80
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,18 @@ class SharedSiteIdsTest extends DatabaseTestCase

public function setUp()
{
parent::setUp();
$this->fixture->performSetUp(null, true);

$this->sharedSiteIds = new SharedSiteIds(array(1,2,5,9));
}

public function tearDown()
{
$this->sharedSiteIds->setSiteIdsToArchive(array());
$siteIdsToCleanup = new SharedSiteIds(array());
$siteIdsToCleanup->setSiteIdsToArchive(array());

parent::tearDown();
}

public function test_construct_withEmptyValue()
Expand Down

0 comments on commit 25c3a80

Please sign in to comment.