Changeset 38078 for trunk/tests/phpunit/tests/xmlrpc/wp/editTerm.php
- Timestamp:
- 07/17/2016 04:23:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/editTerm.php
r37914 r38078 32 32 $this->assertInstanceOf( 'IXR_Error', $result ); 33 33 $this->assertEquals( 403, $result->code ); 34 $this->assertEquals( __( 'Invalid taxonomy ' ), $result->message );34 $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message ); 35 35 } 36 36 … … 41 41 $this->assertInstanceOf( 'IXR_Error', $result ); 42 42 $this->assertEquals( 403, $result->code ); 43 $this->assertEquals( __( 'Invalid taxonomy ' ), $result->message );43 $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message ); 44 44 } 45 45 … … 59 59 $this->assertInstanceOf( 'IXR_Error', $result ); 60 60 $this->assertEquals( 404, $result->code ); 61 $this->assertEquals( __( 'Invalid term ID ' ), $result->message );61 $this->assertEquals( __( 'Invalid term ID.' ), $result->message ); 62 62 } 63 63
Note: See TracChangeset
for help on using the changeset viewer.