From 3d1e61060f04197805d0b36075c6f3071d5cea81 Mon Sep 17 00:00:00 2001 From: Lee Rowlands Date: Fri, 12 Apr 2024 07:42:24 +1000 Subject: [PATCH] Issue #3440175 by mondrake: core/modules/sqlite/tests/src/Kernel/sqlite/TemporaryQueryTest.php is failing in HEAD (cherry picked from commit 48c0a2682cce906b45f1d482ba8906b19c1dbfe2) --- .../sqlite/tests/src/Kernel/sqlite/TemporaryQueryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/sqlite/tests/src/Kernel/sqlite/TemporaryQueryTest.php b/core/modules/sqlite/tests/src/Kernel/sqlite/TemporaryQueryTest.php index 04257c2f0aa..6a6a0d0f100 100644 --- a/core/modules/sqlite/tests/src/Kernel/sqlite/TemporaryQueryTest.php +++ b/core/modules/sqlite/tests/src/Kernel/sqlite/TemporaryQueryTest.php @@ -24,7 +24,7 @@ class TemporaryQueryTest extends TemporaryQueryTestBase { $table_name_test = $connection->queryTemporary('SELECT [name] FROM {test}', []); // Assert that the table is indeed a temporary one. - $this->stringContains("temp.", $table_name_test); + $this->assertStringContainsString("temp.", $table_name_test); // Assert that both have the same field names. $normal_table_fields = $connection->query("SELECT * FROM {test}")->fetch();