diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php index f1cd995fa9..ec617ffea2 100644 --- a/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php @@ -226,14 +226,14 @@ protected function doTestFilters($display_id) { $this->assertText($comment_anonymous->label()); $executable->destroy(); - // Tests commented translation filter. + // Tests comment translation filter. if (!$comment->hasTranslation('ur')) { // If we don't have the translation then create one. $comment_translation = $comment->addTranslation('ur', ['subject' => 'ur title']); $comment_translation->save(); } else { - // If we have the translation then this is a unpublish them. + // If we have the translation then unpublish it. $comment_translation = $comment->getTranslation('ur'); $comment_translation->setUnpublished(); $comment_translation->save(); @@ -244,7 +244,7 @@ protected function doTestFilters($display_id) { $comment_anonymous_translation->save(); } else { - // If we have the translation then this is a unpublish them. + // If we have the translation then unpublish it. $comment_anonymous_translation = $comment_anonymous->getTranslation('ur'); $comment_anonymous_translation->setUnpublished(); $comment_anonymous_translation->save();