Skip to content

Commit cf01a52

Browse files
committed
2 more unit test fixes (2 left)
1 parent 8634a26 commit cf01a52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/tools/jackson/dataformat/xml/deser/builder/BuilderSimpleTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)