Changeset 51454 for trunk/tests/phpunit/tests/user/wpDeleteUser.php
- Timestamp:
- 07/18/2021 02:10:24 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/user/wpDeleteUser.php
r51438 r51454 69 69 $post_id = wp_insert_post( $post ); 70 70 $this->assertIsNumeric( $post_id ); 71 $this->assert True( $post_id > 0);71 $this->assertGreaterThan( 0, $post_id ); 72 72 73 73 $post = get_post( $post_id ); … … 85 85 $nav_id = wp_insert_post( $post ); 86 86 $this->assertIsNumeric( $nav_id ); 87 $this->assert True( $nav_id > 0);87 $this->assertGreaterThan( 0, $nav_id ); 88 88 89 89 $post = get_post( $nav_id );
Note: See TracChangeset
for help on using the changeset viewer.