]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTestTrait.php
Issue 11470: Check for removed account
[friendica.git] / tests / DatabaseTestTrait.php
index 7d255c693b5b9ff996b5ee28d4771b15469293ca..c6348d774754d3dc88324dee692bb774c333a1fa 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -34,6 +34,8 @@ trait DatabaseTestTrait
                StaticDatabase::statConnect($_SERVER);
                // Rollbacks every DB usage (in case the test couldn't call tearDown)
                StaticDatabase::statRollback();
+               // Rollback the first, outer transaction just 2 be sure
+               StaticDatabase::getGlobConnection()->rollBack();
                // Start the first, outer transaction
                StaticDatabase::getGlobConnection()->beginTransaction();
        }
@@ -66,7 +68,7 @@ trait DatabaseTestTrait
                        }
 
                        if (!is_array($rows)) {
-                               $dba->p('TRUNCATE TABLE `' . $tableName . '``');
+                               $dba->e('TRUNCATE TABLE `' . $tableName . '``');
                                continue;
                        }