Changeset 40543 for trunk/tests/phpunit/tests/user/wpDeleteUser.php
- Timestamp:
- 04/23/2017 09:57:31 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/user/wpDeleteUser.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/user/wpDeleteUser.php
r40520 r40543 128 128 */ 129 129 public function test_numeric_string_user_id() { 130 if ( is_multisite() ) { 131 $this->markTestSkipped( 'wp_delete_user() does not delete user records in Multisite.' ); 132 } 130 $this->skipWithMultisite(); 133 131 134 132 $u = self::factory()->user->create(); … … 151 149 */ 152 150 public function test_should_return_false_for_object_user_id() { 153 if ( is_multisite() ) { 154 $this->markTestSkipped( 'wp_delete_user() does not delete user records in Multisite.' ); 155 } 151 $this->skipWithMultisite(); 156 152 157 153 $u_obj = self::factory()->user->create_and_get();
Note: See TracChangeset
for help on using the changeset viewer.