Index: modules/comment/comment.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.test,v
retrieving revision 1.64
diff -u -p -r1.64 comment.test
--- modules/comment/comment.test	24 Jan 2010 15:21:06 -0000	1.64
+++ modules/comment/comment.test	25 Jan 2010 00:10:04 -0000
@@ -1204,7 +1204,8 @@ class CommentContentRebuild extends Comm
   }
 
   /**
-   * Test to ensure that the comment's content array is rebuilt for every call to comment_build().
+   * Test to ensure that the comment's content array is rebuilt for every
+   * call to comment_view().
    */
   function testCommentRebuild() {
     // Update the comment settings so preview isn't required.
@@ -1223,7 +1224,7 @@ class CommentContentRebuild extends Comm
 
     // Add the property to the content array and then see if it still exists on build.
     $comment_loaded->content['test_property'] = array('#value' => $this->randomString());
-    $built_content = comment_build($comment_loaded, $this->node);
+    $built_content = comment_view($comment_loaded, $this->node);
 
     // This means that the content was rebuilt as the added test property no longer exists.
     $this->assertFalse(isset($built_content['test_property']), t('Comment content was emptied before being built.'));
