Make WordPress Core


Ignore:
Timestamp:
07/17/2016 04:23:31 PM (9 years ago)
Author:
SergeyBiryukov
Message:

Unit Tests: Account for the string changes in [38077].

See #18218.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/xmlrpc/wp/getTerms.php

    r37914 r38078  
    1818        $this->assertInstanceOf( 'IXR_Error', $result );
    1919        $this->assertEquals( 403, $result->code );
    20         $this->assertEquals( __( 'Invalid taxonomy' ), $result->message );
     20        $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message );
    2121    }
    2222
     
    2727        $this->assertInstanceOf( 'IXR_Error', $result );
    2828        $this->assertEquals( 403, $result->code );
    29         $this->assertEquals( __( 'Invalid taxonomy' ), $result->message );
     29        $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message );
    3030    }
    3131
Note: See TracChangeset for help on using the changeset viewer.