diff options
Diffstat (limited to 'modules/comment/comment.test')
-rw-r--r-- | modules/comment/comment.test | 5 |
1 files changed, 3 insertions, 2 deletions
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.')); |