Skip to content

Commit

Permalink
🏕️ Remove deprecated doctrine option
Browse files Browse the repository at this point in the history
Honestly I don't even know where it was for anymore, tests still run
after removing this option so let's just roll with it.
  • Loading branch information
LVoogd committed Nov 24, 2024
1 parent 68680d5 commit 6b1901d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src-dev/Testing/PHPUnit/DoctrineTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ protected function setUp(): void

$this->doctrine = $doctrine;

$this->getEntityManager()->getConnection()->setNestTransactionsWithSavepoints(true);
$this->getEntityManager()->getConnection()->setAutoCommit(false);
$this->getEntityManager()->beginTransaction();
}
Expand Down
1 change: 0 additions & 1 deletion src-dev/Testing/PHPUnit/GraphqlTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ protected function setUp(): void
$this->client = $this->createClient();
$this->client->disableReboot();

$this->getDoctrine()->getConnection()->setNestTransactionsWithSavepoints(true);
$this->getDoctrine()->getConnection()->setAutoCommit(false);
$this->getDoctrine()->beginTransaction();
}
Expand Down

0 comments on commit 6b1901d

Please sign in to comment.