diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php b/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php index f4a4316..281ac57 100644 --- a/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php +++ b/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php @@ -142,7 +142,6 @@ public function testPageDisplay() { 'comment_nid' => 'nid', 'comment_subject' => 'subject', 'comment_changed' => 'changed', - 'comment_changed' => 'created', 'cid' => 'cid' ); $expected_result = array(); @@ -150,7 +149,6 @@ public function testPageDisplay() { $expected_result[$key]['nid'] = $comment->nid->target_id; $expected_result[$key]['subject'] = $comment->subject->value; $expected_result[$key]['changed'] = $comment->changed->value; - $expected_result[$key]['created'] = $comment->created->value; $expected_result[$key]['cid'] = $comment->id(); } $this->assertIdenticalResultset($view, $expected_result, $map);