From 60bd67fa17a2743b1615a0fe224001b0e980ce07 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Wed, 26 Apr 2023 09:39:16 +0100
Subject: [PATCH] Issue #1650930 by mkalkbrenner, gidarai, daffie, JeroenT,
 murilohp, jungle, acbramley, shahankitb1982, anmolgoyal74, claudiu.cristea,
 klausi, super_romeo, ankithashetty, longwave, pooja saraah, sahil.goyal,
 mikeytown2, deviantintegral, mhavelant, elgandoz, catch, andypost, pounard,
 neclimdul, Damien Tournoud, Charlie ChX Negyesi, danblack, larowlan: Use READ
 COMMITTED by default for MySQL transactions

---
 .../tests/src/Functional/MigrateUpgradeTestBase.php             | 2 +-
 .../migrate_drupal_ui/tests/src/Functional/d7/FilePathTest.php  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php
index 241fb99b4180..0c19b7e564d1 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeTestBase.php
@@ -301,7 +301,7 @@ protected function getCredentials() {
     $drivers = drupal_get_database_types();
     $form = $drivers[$driver]->getFormOptions($connection_options);
     $connection_options = array_intersect_key($connection_options, $form + $form['advanced_options']);
-    // Remove isolation_level since that options is not configurable in the UI.
+    // Remove isolation_level since that option is not configurable in the UI.
     unset($connection_options['isolation_level']);
     $edit = [
       $driver => $connection_options,
diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/FilePathTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/FilePathTest.php
index 59487a7488e5..332b621dc9ae 100644
--- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/FilePathTest.php
+++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/FilePathTest.php
@@ -127,7 +127,7 @@ public function testFilePath(string $file_private_path, string $file_public_path
     $drivers = drupal_get_database_types();
     $form = $drivers[$driver]->getFormOptions($connection_options);
     $connection_options = array_intersect_key($connection_options, $form + $form['advanced_options']);
-    // Remove isolation_level since that options is not configurable in the UI.
+    // Remove isolation_level since that option is not configurable in the UI.
     unset($connection_options['isolation_level']);
     $edit = [
       $driver => $connection_options,
-- 
GitLab