Changeset 49036 for trunk/tests/phpunit/tests/user/wpDropdownUsers.php
- Timestamp:
- 09/23/2020 12:25:47 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/user/wpDropdownUsers.php
r47122 r49036 131 131 132 132 /** 133 * @ticket 51370 134 */ 135 public function test_include_selected_with_non_existing_user_id() { 136 $found = wp_dropdown_users( 137 array( 138 'echo' => false, 139 'selected' => PHP_INT_MAX, 140 'include_selected' => true, 141 'show' => 'user_login', 142 ) 143 ); 144 145 $this->assertNotContains( (string) PHP_INT_MAX, $found ); 146 } 147 148 /** 133 149 * @ticket 38135 134 150 */
Note: See TracChangeset
for help on using the changeset viewer.