Make WordPress Core

Changeset 38724


Ignore:
Timestamp:
10/04/2016 10:37:59 AM (7 years ago)
Author:
pento
Message:

Emoji: Update some failing unit tests.

The changes in [38717] weren't reflected in the associated unit tests.

See #38113.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/formatting/Emoji.php

    r38087 r38724  
    99     */
    1010    public function test_unfiltered_emoji_cdns() {
    11         $png_cdn = 'https://s.w.org/images/core/emoji/2/72x72/';
    12         $svn_cdn = 'https://s.w.org/images/core/emoji/2/svg/';
     11        $png_cdn = 'https://s.w.org/images/core/emoji/2.2.1/72x72/';
     12        $svn_cdn = 'https://s.w.org/images/core/emoji/2.2.1/svg/';
    1313
    1414        $output = get_echo( '_print_emoji_detection_script' );
     
    2626     */
    2727    public function test_filtered_emoji_svn_cdn() {
    28         $png_cdn = 'https://s.w.org/images/core/emoji/2/72x72/';
    29         $svn_cdn = 'https://s.w.org/images/core/emoji/2/svg/';
     28        $png_cdn = 'https://s.w.org/images/core/emoji/2.2.1/72x72/';
     29        $svn_cdn = 'https://s.w.org/images/core/emoji/2.2.1/svg/';
    3030
    3131        $filtered_svn_cdn = $this->_filtered_emoji_svn_cdn();
     
    5050     */
    5151    public function test_filtered_emoji_png_cdn() {
    52         $png_cdn = 'https://s.w.org/images/core/emoji/2/72x72/';
    53         $svn_cdn = 'https://s.w.org/images/core/emoji/2/svg/';
     52        $png_cdn = 'https://s.w.org/images/core/emoji/2.2.1/72x72/';
     53        $svn_cdn = 'https://s.w.org/images/core/emoji/2.2.1/svg/';
    5454
    5555        $filtered_png_cdn = $this->_filtered_emoji_png_cdn();
Note: See TracChangeset for help on using the changeset viewer.