- Timestamp:
- 02/21/2020 01:05:39 PM (5 years ago)
- Location:
- branches/3.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8
- Property svn:mergeinfo changed
-
branches/3.8/tests/phpunit/tests/ajax/ReplytoComment.php
r25433 r47338 33 33 public function setUp() { 34 34 parent::setUp(); 35 $post_id = $this->factory->post->create(); 35 add_filter( 'comment_notification_recipients', '__return_empty_array' ); 36 $user_id = $this->factory->user->create(); 37 $post_id = $this->factory->post->create( array( 'post_author' => $user_id ) ); 36 38 $this->factory->comment->create_post_comments( $post_id, 5 ); 37 39 $this->_comment_post = get_post( $post_id );
Note: See TracChangeset
for help on using the changeset viewer.