Changeset 35242 for trunk/tests/phpunit/tests/comment/checkComment.php
- Timestamp:
- 10/17/2015 06:02:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/checkComment.php
r35225 r35242 32 32 33 33 public function test_should_return_true_when_comment_whitelist_is_enabled_and_author_has_approved_comment() { 34 $post_id = self:: $factory->post->create();34 $post_id = self::factory()->post->create(); 35 35 $prev_args = array( 36 36 'comment_post_ID' => $post_id, … … 40 40 'comment_author' => 'BobtheBuilder', 41 41 ); 42 $prev_comment_id = self:: $factory->comment->create( $prev_args );42 $prev_comment_id = self::factory()->comment->create( $prev_args ); 43 43 44 44 update_option( 'comment_whitelist', 1 );
Note: See TracChangeset
for help on using the changeset viewer.