From c71e7e4e57b3cc96dad63f689575ec7a13c45b6f Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 1 Jul 2020 11:28:26 +0100 Subject: [PATCH] Issue #3152003 by Beakerboy, sanjayk, alexpott, daffie: EndOfTransactionQueriesTest does not include bootstrap.inc early enough for contrib database drivers --- .../KernelTests/Core/Cache/EndOfTransactionQueriesTest.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/tests/Drupal/KernelTests/Core/Cache/EndOfTransactionQueriesTest.php b/core/tests/Drupal/KernelTests/Core/Cache/EndOfTransactionQueriesTest.php index 7ff31796d4bf..1d735d511def 100644 --- a/core/tests/Drupal/KernelTests/Core/Cache/EndOfTransactionQueriesTest.php +++ b/core/tests/Drupal/KernelTests/Core/Cache/EndOfTransactionQueriesTest.php @@ -31,12 +31,14 @@ class EndOfTransactionQueriesTest extends KernelTestBase { * {@inheritdoc} */ protected function setUp(): void { + parent::setUp(); + + // This can only be checked after installing Drupal as it requires functions + // from bootstrap.inc. if (!class_exists($this->getDatabaseConnectionInfo()['default']['namespace'] . '\Connection')) { $this->markTestSkipped(sprintf('No logging override exists for the %s database driver. Create it, subclass this test class and override ::getDatabaseConnectionInfo().', $this->getDatabaseConnectionInfo()['default']['driver'])); } - parent::setUp(); - $this->installSchema('system', 'sequences'); $this->installEntitySchema('entity_test'); $this->installEntitySchema('user');