Changeset 6801
- Timestamp:
- 04/22/2018 08:51:43 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/testcases/core/update.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/core/update.php
r6330 r6801 103 103 // Forum post 104 104 $this->assertSame( 'General', bbp_get_forum_title( $forum_id ) ); 105 $this->assertSame( 'General chit-chat', bbp_get_forum_content( $forum_id ) );105 $this->assertSame( 'General Discussion', bbp_get_forum_content( $forum_id ) ); 106 106 $this->assertSame( 'open', bbp_get_forum_status( $forum_id ) ); 107 107 $this->assertTrue( bbp_is_forum_public( $forum_id ) ); … … 112 112 $this->assertSame( 'Hello World!', bbp_get_topic_title( $topic_id ) ); 113 113 remove_all_filters( 'bbp_get_topic_content' ); 114 $topic_content = " I am the first topic in your newforums.";114 $topic_content = "This is the very first topic in these forums."; 115 115 $this->assertSame( $topic_content, bbp_get_topic_content( $topic_id ) ); 116 116 $this->assertSame( 'publish', bbp_get_topic_status( $topic_id ) ); … … 122 122 $this->assertSame( $reply_id, bbp_get_reply_title_fallback( $reply_id ) ); 123 123 remove_all_filters( 'bbp_get_reply_content' ); 124 $reply_content = " Oh, and this is what a reply looks like.";124 $reply_content = "And this is the very first reply."; 125 125 $this->assertSame( $reply_content, bbp_get_reply_content( $reply_id ) ); 126 126 $this->assertSame( 'publish', bbp_get_reply_status( $reply_id ) );
Note: See TracChangeset
for help on using the changeset viewer.