File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/tools/jackson/dataformat/xml/deser/builder Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -353,15 +353,15 @@ public void testBuilderMethodReturnMoreGeneral() throws Exception
353353 @ Test
354354 public void testBuilderMethodReturnMoreSpecific () throws Exception
355355 {
356- final String doc = "<ValueInterface2><x>1</x></ValueInterface2>} " ;
356+ final String doc = "<ValueInterface2><x>1</x></ValueInterface2>" ;
357357 ValueInterface2 value = MAPPER .readValue (doc , ValueInterface2 .class );
358358 assertEquals (2 , value .getX ());
359359 }
360360
361361 @ Test
362362 public void testSelfBuilder777 () throws Exception
363363 {
364- SelfBuilder777 result = MAPPER .readValue ("<SelfBuilder777><x>3</x></SelfBuilder777>' " ,
364+ SelfBuilder777 result = MAPPER .readValue ("<SelfBuilder777><x>3</x></SelfBuilder777>" ,
365365 SelfBuilder777 .class );
366366 assertNotNull (result );
367367 assertEquals (3 , result .x );
You can’t perform that action at this time.
0 commit comments