Changeset 52010 for trunk/tests/phpunit/tests/xmlrpc/client.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/client.php
r48937 r52010 11 11 * @ticket 26947 12 12 */ 13 function test_ixr_client_allows_query_strings() {13 public function test_ixr_client_allows_query_strings() { 14 14 $client = new IXR_Client( 'http://example.com/server.php?this-is-needed=true#not-this' ); 15 15 $this->assertSame( 'example.com', $client->server ); … … 21 21 * @ticket 26947 22 22 */ 23 function test_wp_ixr_client_allows_query_strings() {23 public function test_wp_ixr_client_allows_query_strings() { 24 24 $client = new WP_HTTP_IXR_Client( 'http://example.com/server.php?this-is-needed=true#not-this' ); 25 25 $this->assertSame( 'example.com', $client->server );
Note: See TracChangeset
for help on using the changeset viewer.