From 2193f7675dddc5abf7ad3d68429778e0c3ad1b18 Mon Sep 17 00:00:00 2001
From: xjm <xjm@65776.no-reply.drupal.org>
Date: Sun, 25 Dec 2022 09:30:04 -0600
Subject: [PATCH] Issue #3171047 followup by xjm: Fix coding standards changes
 that were not staged properly.

---
 .../Core/Validation/UniqueFieldConstraintTest.php            | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/core/tests/Drupal/KernelTests/Core/Validation/UniqueFieldConstraintTest.php b/core/tests/Drupal/KernelTests/Core/Validation/UniqueFieldConstraintTest.php
index 1e8cb229427b..4a773450a818 100644
--- a/core/tests/Drupal/KernelTests/Core/Validation/UniqueFieldConstraintTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Validation/UniqueFieldConstraintTest.php
@@ -120,7 +120,8 @@ public function providerTestEntityWithStringIdWithViolation() {
    * forbids 'view' access to entity_test entities.
    *
    * @covers ::validate
-   */ public function testViolationDespiteNoAccess() {
+   */
+  public function testViolationDespiteNoAccess() {
     $this->installEntitySchema('entity_test');
 
     // Create and save an entity with a given field value in the field that has
@@ -137,7 +138,7 @@ public function providerTestEntityWithStringIdWithViolation() {
     $violations = $entity->get('name')->validate();
 
     $message = new FormattableMarkup('A @entity_type with @field_name %value already exists.', [
-      '%value' => 'A totally unique entity name',,
+      '%value' => 'A totally unique entity name',
       '@entity_type' => $entity->getEntityType()->getSingularLabel(),
       '@field_name' => 'Name',
     ]);
-- 
GitLab