diff --git a/core/modules/comment/comment.test b/core/modules/comment/comment.test
index 74f735d..03d3579 100644
--- a/core/modules/comment/comment.test
+++ b/core/modules/comment/comment.test
@@ -436,7 +436,6 @@ class CommentInterfaceTest extends CommentHelperCase {
     $this->drupalGet('node');
     $this->assertNoLink(t('@count comments', array('@count' => 0)));
     $this->assertNoLink(t('@count new comments', array('@count' => 0)));
-    $this->assertLink(t('Read more'));
     $count = $this->xpath('//div[@id=:id]/div[@class=:class]/ul/li', array(':id' => 'node-' . $this->node->nid, ':class' => 'link-wrapper'));
     $this->assertTrue(count($count) == 1, t('One child found'));
 
@@ -468,7 +467,6 @@ class CommentInterfaceTest extends CommentHelperCase {
     // Test if "new comment" link is correctly removed.
     $this->drupalGet('node');
     $this->assertLink(t('1 comment'));
-    $this->assertLink(t('Read more'));
     $this->assertNoLink(t('1 new comment'));
     $this->assertNoLink(t('@count new comments', array('@count' => 0)));
     $count = $this->xpath('//div[@id=:id]/div[@class=:class]/ul/li', array(':id' => 'node-' . $this->node->nid, ':class' => 'link-wrapper'));
diff --git a/core/modules/node/node.test b/core/modules/node/node.test
index 02001c7..a59f7b1 100644
--- a/core/modules/node/node.test
+++ b/core/modules/node/node.test
@@ -1100,8 +1100,8 @@ class NodeAccessBaseTableTestCase extends DrupalWebTestCase {
     foreach (array($this->publicTid, $this->privateTid) as $tid_is_private => $tid) {
       $this->drupalGet("taxonomy/term/$tid");
       $this->nids_visible = array();
-      foreach ($this->xpath("//a[text()='Read more']") as $link) {
-        $this->assertTrue(preg_match('|node/(\d+)$|', (string) $link['href'], $matches), 'Read more points to a node');
+      foreach ($this->xpath("//div[contains(@id,'node')]/h2/a") as $link) {
+        $this->assertTrue(preg_match('|node/(\d+)$|', (string) $link['href'], $matches), 'Title link points to a node');
         $this->nids_visible[$matches[1]] = TRUE;
       }
       foreach ($this->nodesByUser as $uid => $data) {
