diff -u b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php --- b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php @@ -45,7 +45,6 @@ $item->save(); - // @todo Expand the test coverage in https://www.drupal.org/node/2464635 // Still needs coverage for: iid, fid, link, author, timestamp, guid. $this->assertFieldAccess('aggregator_item', 'title', $item->getTitle()); $this->assertFieldAccess('aggregator_item', 'langcode', $item->language()->getName()); diff -u b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php --- b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php @@ -5,7 +5,6 @@ use Drupal\comment\Entity\Comment; use Drupal\user\Entity\User; use Drupal\Tests\views\Kernel\Handler\FieldFieldAccessTestBase; -use \Drupal\Core\Entity; /** * Tests base field access in Views for the comment entity. @@ -62,7 +61,6 @@ ]); $comment_anonymous->save(); - // @todo Expand the test coverage in https://www.drupal.org/node/2464635 // Still needs coverage for: pid,entity_id $this->assertFieldAccess('comment', 'cid', $comment->id()); diff -u b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php --- b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php +++ b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php @@ -54,7 +54,6 @@ $node->save(); - // @todo Expand the test coverage in https://www.drupal.org/node/2464635 // Still needs coverage for: revision_timestamp, revision_uid, revision_log, // revision_translation_affected. $this->assertFieldAccess('node', 'nid', $node->id()); diff -u b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php --- b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php +++ b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php @@ -54,7 +54,6 @@ $user->save(); - // @todo Expand the test coverage in https://www.drupal.org/node/2464635 // Still needs coverage for:roles. $this->assertFieldAccess('user', 'uid', $user->id()); diff -u b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php --- b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php @@ -30,7 +30,6 @@ ]); $entity_test->save(); - // @todo Expand the test coverage in https://www.drupal.org/node/2464635 // Still needs tests for: type, created, user_id. $this->assertFieldAccess('entity_test', 'id', $entity_test->id()); $this->assertFieldAccess('entity_test', 'langcode', $entity_test->language()->getName());