You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by ja...@apache.org on 2008/09/21 14:40:33 UTC

svn commit: r697492 - /incubator/jspwiki/trunk/tests/com/ecyrd/jspwiki/providers/BasicAttachmentProviderTest.java

Author: jalkanen
Date: Sun Sep 21 05:40:33 2008
New Revision: 697492

URL: http://svn.apache.org/viewvc?rev=697492&view=rev
Log:
Fixed unmappable characters (had accidentally some Latin1 chars in there.)

Modified:
    incubator/jspwiki/trunk/tests/com/ecyrd/jspwiki/providers/BasicAttachmentProviderTest.java

Modified: incubator/jspwiki/trunk/tests/com/ecyrd/jspwiki/providers/BasicAttachmentProviderTest.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/tests/com/ecyrd/jspwiki/providers/BasicAttachmentProviderTest.java?rev=697492&r1=697491&r2=697492&view=diff
==============================================================================
--- incubator/jspwiki/trunk/tests/com/ecyrd/jspwiki/providers/BasicAttachmentProviderTest.java (original)
+++ incubator/jspwiki/trunk/tests/com/ecyrd/jspwiki/providers/BasicAttachmentProviderTest.java Sun Sep 21 05:40:33 2008
@@ -143,7 +143,7 @@
     {
         File in = makeAttachmentFile();
 
-        Attachment att = new Attachment( m_engine, NAME1, "\u3072\u3048\u308båäötest.füü" );
+        Attachment att = new Attachment( m_engine, NAME1, "\u3072\u3048\u308b\u00e5\u00e4\u00f6test.f\u00fc\u00fc" );
 
         m_provider.putAttachmentData( att, new FileInputStream(in) );