Changeset 54088 for trunk/tests/phpunit/tests/post/nav-menu.php
- Timestamp:
- 09/06/2022 10:03:10 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/nav-menu.php
r53510 r54088 746 746 */ 747 747 public function test_wp_delete_customize_changeset_dependent_auto_drafts() { 748 $auto_draft_post_id = $this->factory()->post->create(748 $auto_draft_post_id = self::factory()->post->create( 749 749 array( 750 750 'post_status' => 'auto-draft', 751 751 ) 752 752 ); 753 $draft_post_id = $this->factory()->post->create(753 $draft_post_id = self::factory()->post->create( 754 754 array( 755 755 'post_status' => 'draft', 756 756 ) 757 757 ); 758 $private_post_id = $this->factory()->post->create(758 $private_post_id = self::factory()->post->create( 759 759 array( 760 760 'post_status' => 'private',
Note: See TracChangeset
for help on using the changeset viewer.