diff --git a/tests/PHPUnit/TestingEnvironment.php b/tests/PHPUnit/TestingEnvironment.php
index 2332c068e4f59ff1f86a3ae5e21a7a1ba772baa3..10869303eae68769fb066b58964dfd2b3552710f 100644
--- a/tests/PHPUnit/TestingEnvironment.php
+++ b/tests/PHPUnit/TestingEnvironment.php
@@ -77,7 +77,7 @@ class Piwik_TestingEnvironment
     public function logVariables()
     {
         if (isset($_SERVER['QUERY_STRING'])) {
-            \Piwik\Log::verbose("Test Environment Variables for (%s):\n%s", $_SERVER['QUERY_STRING'], print_r($this->behaviorOverrideProperties, true));
+            \Piwik\Log::info("Test Environment Variables for (%s):\n%s", $_SERVER['QUERY_STRING'], print_r($this->behaviorOverrideProperties, true));
         }
     }
 
diff --git a/tests/PHPUnit/UI b/tests/PHPUnit/UI
index e8040433bffe762401909ff19dadc626f74eae62..46a121226d3f83d50692b55f5d2b555b69c13c30 160000
--- a/tests/PHPUnit/UI
+++ b/tests/PHPUnit/UI
@@ -1 +1 @@
-Subproject commit e8040433bffe762401909ff19dadc626f74eae62
+Subproject commit 46a121226d3f83d50692b55f5d2b555b69c13c30
diff --git a/tests/lib/screenshot-testing/support/test-environment.js b/tests/lib/screenshot-testing/support/test-environment.js
index 4fa6aa4105944ffe178b82368730e5893afcd595..fbaa34e945cd0044d2d250fe9ec52f662870865c 100644
--- a/tests/lib/screenshot-testing/support/test-environment.js
+++ b/tests/lib/screenshot-testing/support/test-environment.js
@@ -91,6 +91,7 @@ TestingEnvironment.prototype._call = function (params, done) {
     });
 };
 
+var droppedOnce = false;
 TestingEnvironment.prototype.setupFixture = function (fixtureClass, done) {
     console.log("    Setting up fixture " + fixtureClass + "...");
 
@@ -101,8 +102,11 @@ TestingEnvironment.prototype.setupFixture = function (fixtureClass, done) {
         processArgs.push('--persist-fixture-data');
     }
 
-    if (options['drop']) {
+    if (options['drop']
+        && !droppedOnce
+    ) {
         processArgs.push('--drop');
+        droppedOnce = true;
     }
 
     var child = require('child_process').spawn(config.php, processArgs);