diff --git a/tests/PHPUnit/DatabaseTestCase.php b/tests/PHPUnit/DatabaseTestCase.php
index 9541ae7b5549e54d6ce18e2c84fb6bcc3e116ff5..ef3540f50b496bb6f06712bc2ebf0163942cf02f 100644
--- a/tests/PHPUnit/DatabaseTestCase.php
+++ b/tests/PHPUnit/DatabaseTestCase.php
@@ -36,9 +36,7 @@ class DatabaseTestCase extends PHPUnit_Framework_TestCase
         parent::setUp();
 
         $this->fixture = new Fixture();
-        $this->fixture->loadTranslations = false;
-        $this->fixture->createSuperUser = false;
-        $this->fixture->configureComponents = false;
+        $this->configureFixture();
         $this->fixture->performSetUp(__CLASS__);
     }
 
@@ -50,4 +48,11 @@ class DatabaseTestCase extends PHPUnit_Framework_TestCase
         parent::tearDown();
         $this->fixture->performTearDown();
     }
+
+    protected function configureFixture()
+    {
+        $this->fixture->loadTranslations = false;
+        $this->fixture->createSuperUser = false;
+        $this->fixture->configureComponents = false;
+    }
 }
diff --git a/tests/PHPUnit/Fixture.php b/tests/PHPUnit/Fixture.php
index 7b9fb329ac9bdf8f658e47c4a4137a298f4eecf0..129ea81f0c03039b91570b8ddcac9e1ee04fb332 100644
--- a/tests/PHPUnit/Fixture.php
+++ b/tests/PHPUnit/Fixture.php
@@ -294,7 +294,7 @@ class Fixture extends PHPUnit_Framework_Assert
 
         // Manually set the website creation date to a day earlier than the earliest day we record stats for
         Db::get()->update(Common::prefixTable("site"),
-            array('ts_created' => Date::factory($dateTime)->subDay(60)->getDatetime()),
+            array('ts_created' => Date::factory($dateTime)->subDay(30)->getDatetime()),
             "idsite = $idSite"
         );
 
diff --git a/tests/PHPUnit/Integration/Core/TrackerTest.php b/tests/PHPUnit/Integration/Core/TrackerTest.php
index abbfca35f8e4ac92e46f9be57b314d3503fd8f71..f1f6040d4d8837c14110c1769c10edfa23d882dd 100644
--- a/tests/PHPUnit/Integration/Core/TrackerTest.php
+++ b/tests/PHPUnit/Integration/Core/TrackerTest.php
@@ -18,6 +18,11 @@ class Core_TrackerTest extends DatabaseTestCase
         Fixture::createWebsite('2014-02-04');
     }
 
+    protected function configureFixture()
+    {
+        $this->fixture->createSuperUser = true;
+    }
+
     /**
      * Test the Bulk tracking API as documented in: http://developer.piwik.org/api-reference/tracking-api#bulk-tracking
      *