Skip to content

Commit

Permalink
Move #433 test from failing to non-failing, after fixing test itself:…
Browse files Browse the repository at this point in the history
… cannot reproduce the issue.
  • Loading branch information
cowtowncoder committed Nov 16, 2020
1 parent cfcfc75 commit 86f275c
Show file tree
Hide file tree
Showing 5 changed files with 183 additions and 224 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ static final class Values extends LinkedList<Value>

public void testCollection() throws Exception {
final Values values = new XmlMapper().readValue("<values type=\"array\">" +
" <value><v>c</v></value>" +
" <value><v>d</v></value>" +
"</values>",
Values.class);
" <value><v>c</v></value>" +
" <value><v>d</v></value>" +
"</values>",
Values.class);
assertEquals(2, values.getValues().size(), 2);
assertEquals("c", values.getValues().get(0).getV());
assertEquals("d", values.getValues().get(1).getV());
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 86f275c

Please sign in to comment.