Changeset 47122 for trunk/tests/phpunit/tests/xmlrpc/basic.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/xmlrpc/basic.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/basic.php
r46586 r47122 30 30 $this->assertFalse( $this->myxmlrpcserver->login( 'username', 'password' ) ); 31 31 32 // The auth will still fail due to authentication blocking after the first failed attempt 32 // The auth will still fail due to authentication blocking after the first failed attempt. 33 33 $this->assertFalse( $this->myxmlrpcserver->login_pass_ok( 'subscriber', 'subscriber' ) ); 34 34 } … … 46 46 47 47 $method_calls = array( 48 // Valid login 48 // Valid login. 49 49 array( 50 50 'methodName' => 'wp.editPost', … … 59 59 ), 60 60 ), 61 // *Invalid* login 61 // *Invalid* login. 62 62 array( 63 63 'methodName' => 'wp.editPost', … … 72 72 ), 73 73 ), 74 // Valid login 74 // Valid login. 75 75 array( 76 76 'methodName' => 'wp.editPost',
Note: See TracChangeset
for help on using the changeset viewer.