diff --git a/core/Tracker/Cache.php b/core/Tracker/Cache.php
index 29ffe5cce24e9a7168c7bc3740527afbbd7b7219..04eff2390cda7c2deefc278d52579a8c0cf481a1 100644
--- a/core/Tracker/Cache.php
+++ b/core/Tracker/Cache.php
@@ -44,6 +44,7 @@ class Piwik_Tracker_Cache
 
         $cache = self::getInstance();
         if (($cacheContent = $cache->get($idSite)) !== false) {
+        echo "attributes for $idSite: ".print_r($cacheContent, true);
             return $cacheContent;
         }
 
@@ -151,4 +152,4 @@ class Piwik_Tracker_Cache
         self::getInstance()->deleteAll();
     }
 
-}
\ No newline at end of file
+}
diff --git a/tests/PHPUnit/Fixtures/InvalidVisits.php b/tests/PHPUnit/Fixtures/InvalidVisits.php
index 766bbcc06dae5a65b2b41094f762cdbae8c3b18b..89e9f84f2f8636f434382ca830e1a659d59a8669 100644
--- a/tests/PHPUnit/Fixtures/InvalidVisits.php
+++ b/tests/PHPUnit/Fixtures/InvalidVisits.php
@@ -54,13 +54,13 @@ class Test_Piwik_Fixture_InvalidVisits extends Test_Piwik_BaseFixture
 
         // test GoogleBot UA visitor
         $t->setUserAgent('Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)');
-        self::checkResponse($t->doTrackPageView('bot visit, please do not record'));
+        //self::checkResponse($t->doTrackPageView('bot visit, please do not record'));
 
         // Test IP Exclusion works with or without IP exclusion
         foreach (array(false, true) as $enable) {
             $excludedIp = '154.1.12.34';
             Piwik_SitesManager_API::getInstance()->updateSite($idSite, 'new site name', $url = array('http://site.com'), $ecommerce = 0, $ss = 1, $ss_kwd = '', $ss_cat = '', $excludedIp . ',1.2.3.4', $excludedQueryParameters = null, $timezone = null, $currency = null, $group = null, $startDate = null, $excludedUserAgents = 'excludeduseragentstring');
-throw new Exception("\nAFTER UPDATE: ".print_r(Piwik_Tracker_Cache::getCacheWebsiteAttributes($idSite), true)."\n\n");
+
             // Enable IP Anonymization
             $t->DEBUG_APPEND_URL = '&forceIpAnonymization=' . (int)$enable;