You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2010/01/26 00:53:32 UTC

svn commit: r903016 - /incubator/wookie/trunk/src-tests/org/apache/wookie/tests/ContentTypeUtilsTest.java

Author: scottbw
Date: Mon Jan 25 23:53:32 2010
New Revision: 903016

URL: http://svn.apache.org/viewvc?rev=903016&view=rev
Log:
Replaced corrupted character in test case with correct UTF-8 char.

Modified:
    incubator/wookie/trunk/src-tests/org/apache/wookie/tests/ContentTypeUtilsTest.java

Modified: incubator/wookie/trunk/src-tests/org/apache/wookie/tests/ContentTypeUtilsTest.java
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/src-tests/org/apache/wookie/tests/ContentTypeUtilsTest.java?rev=903016&r1=903015&r2=903016&view=diff
==============================================================================
--- incubator/wookie/trunk/src-tests/org/apache/wookie/tests/ContentTypeUtilsTest.java (original)
+++ incubator/wookie/trunk/src-tests/org/apache/wookie/tests/ContentTypeUtilsTest.java Mon Jan 25 23:53:32 2010
@@ -53,6 +53,6 @@
 		assertFalse(ContentTypeUtils.isSupportedImageType("test.p n g"));
 		assertFalse(ContentTypeUtils.isSupportedImageType("test.p3ng"));
 		assertFalse(ContentTypeUtils.isSupportedImageType("test.png0"));
-		assertFalse(ContentTypeUtils.isSupportedImageType("test.p–g"));
+		assertFalse(ContentTypeUtils.isSupportedImageType("test.pñg"));
 	}
 }