diff --git a/core/tests/Drupal/KernelTests/Core/Validation/UniqueFieldConstraintTest.php b/core/tests/Drupal/KernelTests/Core/Validation/UniqueFieldConstraintTest.php
index 1e8cb229427b37d98f671a5816ed9c259796a97a..4a773450a8185a96040a6ce5201cfee365c38287 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',
     ]);