Author: hasan
Date: Mon Jan 30 10:52:52 2012
New Revision: 1237599
URL: http://svn.apache.org/viewvc?rev=1237599&view=rev
Log:
CLEREZZA-671: replaced a umlaut in test file with its utf-8 encoding
Modified:
incubator/clerezza/trunk/parent/jaxrs.utils/src/test/java/org/apache/clerezza/jaxrs/utils/JSONObjectMessageBodyWriterTest.java
Modified:
incubator/clerezza/trunk/parent/jaxrs.utils/src/test/java/org/apache/clerezza/jaxrs/utils/JSONObjectMessageBodyWriterTest.java
URL:
http://svn.apache.org/viewvc/incubator/clerezza/trunk/parent/jaxrs.utils/src/test/java/org/apache/clerezza/jaxrs/utils/JSONObjectMessageBodyWriterTest.java?rev=1237599&r1=1237598&r2=1237599&view=diff
==============================================================================
---
incubator/clerezza/trunk/parent/jaxrs.utils/src/test/java/org/apache/clerezza/jaxrs/utils/JSONObjectMessageBodyWriterTest.java
(original)
+++
incubator/clerezza/trunk/parent/jaxrs.utils/src/test/java/org/apache/clerezza/jaxrs/utils/JSONObjectMessageBodyWriterTest.java
Mon Jan 30 10:52:52 2012
@@ -65,7 +65,7 @@ public class JSONObjectMessageBodyWriter
@Test
public void testMbwWithUmlaut() throws IOException {
- testMbw("foobär");
+ testMbw("foob\u00E4r"); // foobär
}
private void testMbw(String param) throws IOException {
@@ -103,7 +103,7 @@ public class JSONObjectMessageBodyWriter
@Test
public void testWriteToAndGetSizeWithUmlaut() throws Exception {
- testWriteToAndGetSize("foobär");
+ testWriteToAndGetSize("foob\u00E4r"); // foobär
}
@Test