From fa4cfd616d51864373f1ad97676d2784d95284b6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 25 Jan 2010 10:40:00 +0000 Subject: - Patch #564642 by Scott Reynolds, Dave Reid: comment_build() was renamed to comment_view() --- modules/comment/comment.test | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/comment/comment.test b/modules/comment/comment.test index 9b1192e17..14b4e1081 100644 --- a/modules/comment/comment.test +++ b/modules/comment/comment.test @@ -1204,7 +1204,8 @@ class CommentContentRebuild extends CommentHelperCase { } /** - * 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 CommentHelperCase { // 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.')); -- cgit v1.2.3