[FILEUPLOAD-199] #comment fixed encoding issue on tests which fails in shell (but not in Eclipse...)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1455521 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/commons/fileupload/ParameterParserTest.java b/src/test/java/org/apache/commons/fileupload/ParameterParserTest.java
index 176e3d9..4e55c77 100644
--- a/src/test/java/org/apache/commons/fileupload/ParameterParserTest.java
+++ b/src/test/java/org/apache/commons/fileupload/ParameterParserTest.java
@@ -114,9 +114,9 @@
     @Test
     public void fileUpload199() {
         ParameterParser parser = new ParameterParser();
-        String s = "Content-Disposition: form-data; name=\"file\"; filename=\"=?UTF-8?Q?=D1=82=D0=B5=D1=81=D1=82.txt?=\"\r\n";
+        String s = "Content-Disposition: form-data; name=\"file\"; filename=\"=?ISO-8859-1?B?SWYgeW91IGNhbiByZWFkIHRoaXMgeW8=?= =?ISO-8859-2?B?dSB1bmRlcnN0YW5kIHRoZSBleGFtcGxlLg==?=\"\r\n";
         Map<String, String> params = parser.parse(s, new char[] { ',', ';' });
-        assertEquals("ั‚ะตัั‚.txt", params.get("filename"));
+        assertEquals("If you can read this you understand the example.", params.get("filename"));
     }
 
 }