You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2012/08/21 21:28:04 UTC

svn commit: r1375728 - /ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/report/XmlReportWriterTest.java

Author: hibou
Date: Tue Aug 21 19:28:03 2012
New Revision: 1375728

URL: http://svn.apache.org/viewvc?rev=1375728&view=rev
Log:
fix encoding of e with acute

Modified:
    ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/report/XmlReportWriterTest.java

Modified: ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/report/XmlReportWriterTest.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/report/XmlReportWriterTest.java?rev=1375728&r1=1375727&r2=1375728&view=diff
==============================================================================
--- ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/report/XmlReportWriterTest.java (original)
+++ ant/ivy/core/trunk/test/java/org/apache/ivy/plugins/report/XmlReportWriterTest.java Tue Aug 21 19:28:03 2012
@@ -71,7 +71,7 @@ public class XmlReportWriterTest extends
                 + new File("test/repositories/1/org1/mod1.2/jars/mod1.2-2.0.jar").getAbsolutePath()
                 + "\"";
         String expectedIsLocal = "is-local=\"true\"";
-        String expectedOrg = "organisation=\"sp�cial\"";
+        String expectedOrg = "organisation=\"sp\u00E9cial\"";
 
         assertTrue("XML doesn't contain artifact location attribute",
             xml.indexOf(expectedLocation) != -1);