Changeset 38938 for trunk/tests/phpunit/tests/xmlrpc/wp/editProfile.php
- Timestamp:
- 10/26/2016 01:23:24 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/editProfile.php
r25002 r38938 42 42 function test_ignore_password_change() { 43 43 $this->make_user_by_role( 'author' ); 44 $new_pass = rand_str();44 $new_pass = 'newpassword'; 45 45 $new_data = array( 'password' => $new_pass ); 46 46 … … 57 57 function test_ignore_email_change() { 58 58 $editor_id = $this->make_user_by_role( 'editor' ); 59 $new_email = rand_str() . '@example.com';59 $new_email = 'notaneditor@example.com'; 60 60 $new_data = array( 'email' => $new_email ); 61 61
Note: See TracChangeset
for help on using the changeset viewer.