Make WordPress Core


Ignore:
Timestamp:
07/17/2016 04:23:31 PM (8 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/newTerm.php

    r37914 r38078  
    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
     
    3636        $this->assertInstanceOf( 'IXR_Error', $result );
    3737        $this->assertEquals( 403, $result->code );
    38         $this->assertEquals( __( 'Invalid taxonomy' ), $result->message );
     38        $this->assertEquals( __( 'Invalid taxonomy.' ), $result->message );
    3939    }
    4040
Note: See TracChangeset for help on using the changeset viewer.