File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-oxm/src/test/java/org/springframework/oxm/jibx Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public class JibxUnmarshallerTests extends AbstractUnmarshallerTests {
37
37
38
38
protected static final String INPUT_STRING_WITH_SPECIAL_CHARACTERS =
39
39
"<tns:flights xmlns:tns=\" http://samples.springframework.org/flight\" >" +
40
- "<tns:flight><tns:airline>Air Liberté </tns:airline><tns:number>42</tns:number></tns:flight></tns:flights>" ;
40
+ "<tns:flight><tns:airline>Air Libert \u00e9 </tns:airline><tns:number>42</tns:number></tns:flight></tns:flights>" ;
41
41
42
42
@ Override
43
43
protected Unmarshaller createUnmarshaller () throws Exception {
@@ -78,7 +78,7 @@ public void unmarshalStreamSourceInputStreamUsingNonDefaultEncoding() throws Exc
78
78
testFlights (flights );
79
79
80
80
FlightType flight = ((Flights )flights ).getFlight (0 );
81
- assertEquals ("Airline is invalid" , "Air Liberté " , flight .getAirline ());
81
+ assertEquals ("Airline is invalid" , "Air Libert \u00e9 " , flight .getAirline ());
82
82
}
83
83
84
84
}
You can’t perform that action at this time.
0 commit comments