Ticket #3782: 3782.2-unit-test.patch
File 3782.2-unit-test.patch, 649 bytes (added by , 11 years ago) |
---|
-
trunk/tests/formatting/RemoveAccents.php
90 90 public function test_remove_accents_germanic_umlauts() { 91 91 add_filter( 'locale', array( $this, '_remove_accents_germanic_umlauts_cb' ) ); 92 92 93 $this->assertEquals( 'A EOEUEaeoeuess', remove_accents( 'ÄÖÜäöüß' ) );93 $this->assertEquals( 'AeOeUeaeoeuess', remove_accents( 'ÄÖÜäöüß' ) ); 94 94 95 95 remove_filter( 'locale', array( $this, '_remove_accents_germanic_umlauts_cb' ) ); 96 96 }