From bd613ba70c760f7443d5b89a3d1a0af3bbdb2021 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Mon, 3 May 2021 01:27:06 -0400 Subject: [PATCH] Remove second beginTransaction The transaction is already started in the proper `BeginTransactionAndSetDatabase` extender. --- php-packages/testing/src/integration/TestCase.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/php-packages/testing/src/integration/TestCase.php b/php-packages/testing/src/integration/TestCase.php index ae1315d99..034db0f3f 100644 --- a/php-packages/testing/src/integration/TestCase.php +++ b/php-packages/testing/src/integration/TestCase.php @@ -79,8 +79,6 @@ abstract class TestCase extends \PHPUnit\Framework\TestCase $this->app = $site->bootApp(); - $this->database()->beginTransaction(); - $this->populateDatabase(); }