From 48c0a2682cce906b45f1d482ba8906b19c1dbfe2 Mon Sep 17 00:00:00 2001
From: Lee Rowlands <lee.rowlands@previousnext.com.au>
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

---
 .../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 04257c2f0aa5..6a6a0d0f1000 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 @@ public function testTemporaryQuery() {
     $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();
-- 
GitLab