Make WordPress Core

Ticket #3782: 3782.2-unit-test.patch

File 3782.2-unit-test.patch, 649 bytes (added by ocean90, 11 years ago)
  • trunk/tests/formatting/RemoveAccents.php

     
    9090        public function test_remove_accents_germanic_umlauts() {
    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' ) );
    9696        }