Make WordPress Core


Ignore:
Timestamp:
12/30/2012 08:57:06 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Correct the expected results in remove_accents() test for German umlauts. props ocean90. see #3782.

File:
1 edited

Legend:

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

    r1179 r1180  
    9191        add_filter( 'locale', array( $this, '_remove_accents_germanic_umlauts_cb' ) );
    9292
    93         $this->assertEquals( 'AEOEUEaeoeuess', 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.