Skip to content

Commit 7c07e4f

Browse files
committed
Sort members.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1415689 13f79535-47bb-0310-9956-ffa450edef68
1 parent aad956b commit 7c07e4f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/test/java/org/apache/commons/io/CharsetsTestCase.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@
3030
*/
3131
public class CharsetsTestCase {
3232

33+
@Test
34+
public void testIso8859_1() {
35+
Assert.assertEquals("ISO-8859-1", Charsets.ISO_8859_1.name());
36+
}
37+
3338
@Test
3439
public void testToCharset() {
3540
Assert.assertEquals(Charset.defaultCharset(), Charsets.toCharset((String) null));
3641
Assert.assertEquals(Charset.defaultCharset(), Charsets.toCharset((Charset) null));
3742
Assert.assertEquals(Charset.defaultCharset(), Charsets.toCharset(Charset.defaultCharset()));
3843
Assert.assertEquals(Charset.forName("UTF-8"), Charsets.toCharset(Charset.forName("UTF-8")));
3944
}
40-
41-
@Test
42-
public void testIso8859_1() {
43-
Assert.assertEquals("ISO-8859-1", Charsets.ISO_8859_1.name());
44-
}
4545

4646
@Test
4747
public void testUsAscii() {

0 commit comments

Comments
 (0)