Skip to content

Commit

Permalink
Fix failed test with newer glibc
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Jul 28, 2015
1 parent 4025d7e commit 0692714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Util/test/Horde/Util/TransliterateTest.php
Expand Up @@ -79,9 +79,9 @@ public function iconvDataProvider()
// No normalization
array('ABC123abc', 'ABC123abc'),
// Non-ascii can all be transliterated
array('AÀBÞEÉSß', 'AAB?EESss'),
array('AÀBEÉSß', 'AABEESss'),
// Some non-ascii cannot be transliterated
array('AÀ黾BÞ', 'AA?B?')
array('AÀ黾B', 'AA?B')
);
}

Expand Down

0 comments on commit 0692714

Please sign in to comment.