Repository: commons-io Updated Branches: refs/heads/master ed15b0998 -> 459cebc51
IO-557: UnsupportedEncodingException when opening an ISO-8859-1 XML stream with Turkish as the default locale improve test name Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/459cebc5 Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/459cebc5 Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/459cebc5 Branch: refs/heads/master Commit: 459cebc515b11fef06464b711b3b33cbc1dd8c26 Parents: ed15b09 Author: pascalschumacher <pascalschumac...@gmx.net> Authored: Sun Jan 14 11:45:10 2018 +0100 Committer: pascalschumacher <pascalschumac...@gmx.net> Committed: Sun Jan 14 11:45:10 2018 +0100 ---------------------------------------------------------------------- .../java/org/apache/commons/io/output/XmlStreamWriterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-io/blob/459cebc5/src/test/java/org/apache/commons/io/output/XmlStreamWriterTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/io/output/XmlStreamWriterTest.java b/src/test/java/org/apache/commons/io/output/XmlStreamWriterTest.java index 7d3cd13..f7edb8d 100644 --- a/src/test/java/org/apache/commons/io/output/XmlStreamWriterTest.java +++ b/src/test/java/org/apache/commons/io/output/XmlStreamWriterTest.java @@ -111,7 +111,7 @@ public class XmlStreamWriterTest { // Turkish language has specific rules to convert dotted and dottless i character. @Test @SystemDefaults(locale="tr") - public void testLowerCaseEncoding_IO_557() throws IOException { + public void testLowerCaseEncodingWithTurkishLocale_IO_557() throws IOException { checkXmlWriter(TEXT_UNICODE, "utf-8"); checkXmlWriter(TEXT_LATIN1, "iso-8859-1"); checkXmlWriter(TEXT_LATIN7, "iso-8859-7");