diff --git a/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php b/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php index f1cc5df..aac298c 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php @@ -119,15 +119,15 @@ public function testContentModerationStateRevisionJoin() { $expected_result = [ [ - 'revision_id' => $node->getRevisionId(), + 'vid' => $node->getRevisionId(), 'moderation_state' => 'published', ], [ - 'revision_id' => $revision->getRevisionId(), + 'vid' => $revision->getRevisionId(), 'moderation_state' => 'draft', ], ]; - $this->assertIdenticalResultset($view, $expected_result, ['revision_id' => 'revision_id', 'moderation_state' => 'moderation_state']); + $this->assertIdenticalResultset($view, $expected_result, ['vid' => 'vid', 'moderation_state' => 'moderation_state']); } /**