diff --git a/core/modules/aggregator/src/Tests/Views/AggregatorFeedViewsFieldAccessTest.php b/core/modules/aggregator/src/Tests/Views/AggregatorFeedViewsFieldAccessTest.php
index c85087e..a8e3f31 100644
--- a/core/modules/aggregator/src/Tests/Views/AggregatorFeedViewsFieldAccessTest.php
+++ b/core/modules/aggregator/src/Tests/Views/AggregatorFeedViewsFieldAccessTest.php
@@ -43,8 +43,9 @@ public function testAggregatorFeedFields() {
     $feed->save();
 
     // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
-    // $this->assertFieldAccess('aggregator_feed', 'title', $feed->label());
+    // Still needs coverage for: fid, uuid, refresh, checked, queued, link,
+    // description, image, hash, etag, modified.
+    $this->assertFieldAccess('aggregator_feed', 'title', $feed->label());
     $this->assertFieldAccess('aggregator_feed', 'langcode', $feed->language()->getName());
     $this->assertFieldAccess('aggregator_feed', 'url', $feed->getUrl());
   }
diff --git a/core/modules/aggregator/src/Tests/Views/AggregatorItemViewsFieldAccessTest.php b/core/modules/aggregator/src/Tests/Views/AggregatorItemViewsFieldAccessTest.php
index b1c23c5..b3dba74 100644
--- a/core/modules/aggregator/src/Tests/Views/AggregatorItemViewsFieldAccessTest.php
+++ b/core/modules/aggregator/src/Tests/Views/AggregatorItemViewsFieldAccessTest.php
@@ -51,7 +51,7 @@ public function testAggregatorItemFields() {
     $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());
     $this->assertFieldAccess('aggregator_item', 'description', $item->getDescription());
diff --git a/core/modules/comment/src/Tests/Views/CommentViewsFieldAccessTest.php b/core/modules/comment/src/Tests/Views/CommentViewsFieldAccessTest.php
index 2400dd0..66aef9d 100644
--- a/core/modules/comment/src/Tests/Views/CommentViewsFieldAccessTest.php
+++ b/core/modules/comment/src/Tests/Views/CommentViewsFieldAccessTest.php
@@ -63,9 +63,12 @@ public function testCommentFields() {
     $comment_anonymous->save();
 
     // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
+    // Still needs coverage for: pid, entity_id, hostname, thread, entity_type,
+    // field_name.
     $this->assertFieldAccess('comment', 'cid', $comment->id());
     $this->assertFieldAccess('comment', 'cid', $comment_anonymous->id());
+    $this->assertFieldAccess('comment', 'comment_type', $comment->getTypeId());
+    $this->assertFieldAccess('comment', 'langcode', $comment->langcode());
     $this->assertFieldAccess('comment', 'uuid', $comment->uuid());
     $this->assertFieldAccess('comment', 'subject', 'My comment title');
     $this->assertFieldAccess('comment', 'subject', 'Anonymous comment title');
@@ -73,8 +76,8 @@ public function testCommentFields() {
     $this->assertFieldAccess('comment', 'mail', 'test@example.com');
     $this->assertFieldAccess('comment', 'homepage', 'https://example.com');
     $this->assertFieldAccess('comment', 'uid', $user->getUsername());
-    // $this->assertFieldAccess('comment', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('comment', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('comment', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('comment', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
     $this->assertFieldAccess('comment', 'status', 'On');
   }
 
diff --git a/core/modules/file/src/Tests/Views/FileViewsFieldAccessTest.php b/core/modules/file/src/Tests/Views/FileViewsFieldAccessTest.php
index 94adad3..afd2393 100644
--- a/core/modules/file/src/Tests/Views/FileViewsFieldAccessTest.php
+++ b/core/modules/file/src/Tests/Views/FileViewsFieldAccessTest.php
@@ -57,8 +57,6 @@ public function testFileFields() {
     ]);
     $file->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
     $this->assertFieldAccess('file', 'fid', $file->id());
     $this->assertFieldAccess('file', 'uuid', $file->uuid());
     $this->assertFieldAccess('file', 'langcode', $file->language()->getName());
@@ -68,8 +66,8 @@ public function testFileFields() {
     $this->assertFieldAccess('file', 'filemime', $file->filemime->value);
     $this->assertFieldAccess('file', 'filesize', '4 bytes');
     $this->assertFieldAccess('file', 'status', t('Permanent'));
-    // $this->assertFieldAccess('file', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('file', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('file', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('file', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
   }
 
 }
diff --git a/core/modules/node/src/Tests/Views/NodeViewsFieldAccessTest.php b/core/modules/node/src/Tests/Views/NodeViewsFieldAccessTest.php
index 379cf30..d72d232 100644
--- a/core/modules/node/src/Tests/Views/NodeViewsFieldAccessTest.php
+++ b/core/modules/node/src/Tests/Views/NodeViewsFieldAccessTest.php
@@ -58,7 +58,8 @@ public function testNodeFields() {
     $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());
     $this->assertFieldAccess('node', 'uuid', $node->uuid());
     $this->assertFieldAccess('node', 'vid', $node->id());
@@ -72,8 +73,8 @@ public function testNodeFields() {
     $this->assertFieldAccess('node', 'promote', 'On');
     $this->assertFieldAccess('node', 'sticky', 'Off');
 
-    // $this->assertFieldAccess('node', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('node', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('node', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('node', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
   }
 
 }
diff --git a/core/modules/user/src/Tests/Views/UserViewsFieldAccessTest.php b/core/modules/user/src/Tests/Views/UserViewsFieldAccessTest.php
index f3e4dc7..6d470c9 100644
--- a/core/modules/user/src/Tests/Views/UserViewsFieldAccessTest.php
+++ b/core/modules/user/src/Tests/Views/UserViewsFieldAccessTest.php
@@ -55,6 +55,7 @@ public function testUserFields() {
     $user->save();
 
     // @todo Expand the test coverage in https://www.drupal.org/node/2464635
+    // Still needs coverage for: pass, access, login, init, roles.
 
     $this->assertFieldAccess('user', 'uid', $user->id());
     $this->assertFieldAccess('user', 'uuid', $user->uuid());
@@ -62,11 +63,11 @@ public function testUserFields() {
     $this->assertFieldAccess('user', 'preferred_langcode', 'Spanish');
     $this->assertFieldAccess('user', 'preferred_admin_langcode', 'French');
     $this->assertFieldAccess('user', 'name', 'test user');
-    // $this->assertFieldAccess('user', 'mail', 'druplicon@drop.org');
+    $this->assertFieldAccess('user', 'mail', 'druplicon@drop.org');
     $this->assertFieldAccess('user', 'timezone', 'ut1');
     $this->assertFieldAccess('user', 'status', 'On');
-    // $this->assertFieldAccess('user', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('user', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('user', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('user', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
   }
 
 }
diff --git a/core/modules/views/src/Tests/Handler/EntityTestViewsFieldAccessTest.php b/core/modules/views/src/Tests/Handler/EntityTestViewsFieldAccessTest.php
index 1e2704b..576d1ac 100644
--- a/core/modules/views/src/Tests/Handler/EntityTestViewsFieldAccessTest.php
+++ b/core/modules/views/src/Tests/Handler/EntityTestViewsFieldAccessTest.php
@@ -36,7 +36,7 @@ public function testEntityTestFields() {
     $entity_test->save();
 
     // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
+    // Still needs tests for: uuid, type, created, user_id.
     $this->assertFieldAccess('entity_test', 'id', $entity_test->id());
     $this->assertFieldAccess('entity_test', 'langcode', $entity_test->language()->getName());
     $this->assertFieldAccess('entity_test', 'name', $entity_test->getName());
