Make WordPress Core

Changeset 1179 in tests


Ignore:
Timestamp:
12/30/2012 02:16:34 AM (11 years ago)
Author:
SergeyBiryukov
Message:

Add capital characters to remove_accents() test for German umlauts. see #3782.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/formatting/RemoveAccents.php

    r1178 r1179  
    9191        add_filter( 'locale', array( $this, '_remove_accents_germanic_umlauts_cb' ) );
    9292
    93         $this->assertEquals( 'aeoeuess', remove_accents( 'äöüß' ) );
     93        $this->assertEquals( 'AEOEUEaeoeuess', remove_accents( 'ÄÖÜäöüß' ) );
    9494
    9595        remove_filter( 'locale', array( $this, '_remove_accents_germanic_umlauts_cb' ) );
Note: See TracChangeset for help on using the changeset viewer.