Changeset 38078 for trunk/tests/phpunit/tests/xmlrpc/wp/getTerm.php
- Timestamp:
- 07/17/2016 04:23:31 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/getTerm.php
r37914 r38078 26 26 $this->assertInstanceOf( 'IXR_Error', $result ); 27 27 $this->assertEquals( 403, $result->code ); 28 $this->assertEquals( __( 'Invalid taxonomy ' ), $result->message );28 $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message ); 29 29 } 30 30 … … 35 35 $this->assertInstanceOf( 'IXR_Error', $result ); 36 36 $this->assertEquals( 403, $result->code ); 37 $this->assertEquals( __( 'Invalid taxonomy ' ), $result->message );37 $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message ); 38 38 } 39 39 … … 63 63 $this->assertInstanceOf( 'IXR_Error', $result ); 64 64 $this->assertEquals( 404, $result->code ); 65 $this->assertEquals( __( 'Invalid term ID'), $result->message );65 $this->assertEquals( __( 'Invalid term ID.' ), $result->message ); 66 66 } 67 67
Note: See TracChangeset
for help on using the changeset viewer.