Changeset 35225 for trunk/tests/phpunit/tests/ajax/Autosave.php
- Timestamp:
- 10/16/2015 09:04:12 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/ajax/Autosave.php
r35211 r35225 34 34 parent::setUp(); 35 35 // Set a user so the $post has 'post_author' 36 $this->user_id = $this->factory->user->create( array( 'role' => 'administrator' ) );36 $this->user_id = self::$factory->user->create( array( 'role' => 'administrator' ) ); 37 37 wp_set_current_user( $this->user_id ); 38 38 39 $post_id = $this->factory->post->create( array( 'post_status' => 'draft' ) );39 $post_id = self::$factory->post->create( array( 'post_status' => 'draft' ) ); 40 40 $this->_post = get_post( $post_id ); 41 41 } … … 98 98 public function test_autosave_locked_post() { 99 99 // Lock the post to another user 100 $another_user_id = $this->factory->user->create( array( 'role' => 'editor' ) );100 $another_user_id = self::$factory->user->create( array( 'role' => 'editor' ) ); 101 101 wp_set_current_user( $another_user_id ); 102 102 wp_set_post_lock( $this->_post->ID );
Note: See TracChangeset
for help on using the changeset viewer.