diff --git a/tests/Provider/Doctrine/Auditing/Transaction/TransactionProcessorTest.php b/tests/Provider/Doctrine/Auditing/Transaction/TransactionProcessorTest.php index b3125c05..dcb2b631 100644 --- a/tests/Provider/Doctrine/Auditing/Transaction/TransactionProcessorTest.php +++ b/tests/Provider/Doctrine/Auditing/Transaction/TransactionProcessorTest.php @@ -152,7 +152,7 @@ public function testRemove(): void self::assertSame([ 'class' => Author::class, 'id' => 1, - 'label' => 'John Doe', //Author::class.'#1', + 'label' => 'John Doe', // Author::class.'#1', 'table' => $entityManager->getClassMetadata(Author::class)->getTableName(), ], $entry->getDiffs(), 'audit entry diffs is ok.'); } @@ -221,7 +221,7 @@ public function testAssociateOneToMany(): void 'class' => Author::class, 'field' => 'posts', 'id' => 1, - 'label' => 'John Doe', //Author::class.'#1', + 'label' => 'John Doe', // Author::class.'#1', 'table' => $entityManager->getClassMetadata(Author::class)->getTableName(), ], 'target' => [ @@ -295,7 +295,7 @@ public function testDissociateOneToMany(): void 'class' => Author::class, 'field' => 'posts', 'id' => 1, - 'label' => 'John Doe', //Author::class.'#1', + 'label' => 'John Doe', // Author::class.'#1', 'table' => $entityManager->getClassMetadata(Author::class)->getTableName(), ], 'target' => [ @@ -424,7 +424,7 @@ public function testAssociateManyToMany(): void 'class' => Tag::class, 'field' => 'posts', 'id' => 2, - 'label' => 'house', //Tag::class.'#2', + 'label' => 'house', // Tag::class.'#2', 'table' => $entityManager->getClassMetadata(Tag::class)->getTableName(), ], ], $entry->getDiffs(), 'audit entry diffs is ok.'); @@ -449,7 +449,7 @@ public function testAssociateManyToMany(): void 'class' => Tag::class, 'field' => 'posts', 'id' => 1, - 'label' => 'techno', //Tag::class.'#1', + 'label' => 'techno', // Tag::class.'#1', 'table' => $entityManager->getClassMetadata(Tag::class)->getTableName(), ], ], $entry->getDiffs(), 'audit entry diffs is ok.'); @@ -574,7 +574,7 @@ public function testDissociateManyToMany(): void 'class' => Tag::class, 'field' => 'posts', 'id' => 2, - 'label' => 'house', //Tag::class.'#2', + 'label' => 'house', // Tag::class.'#2', 'table' => $entityManager->getClassMetadata(Tag::class)->getTableName(), ], ], $entry->getDiffs(), 'audit entry diffs is ok.');