Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / comment / tests / src / Functional / CommentActionsTest.php
index 79786fcc0525e623dc04f62b3d2110ab2d6d8e34..326749b7c03c956aa2ed90a3f33a1983b30bc38d 100644 (file)
@@ -32,7 +32,7 @@ class CommentActionsTest extends CommentTestBase {
     $action = Action::load('comment_unpublish_action');
     $action->execute([$comment]);
     $this->assertTrue($comment->isPublished() === FALSE, 'Comment was unpublished');
-
+    $this->assertArraySubset(['module' => ['comment']], $action->getDependencies());
     // Publish a comment.
     $action = Action::load('comment_publish_action');
     $action->execute([$comment]);