Skip to content

Commit

Permalink
Fix issue in unit test for #121
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed May 5, 2022
1 parent 03e7360 commit 57ac842
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,6 @@ private void assertThrowsOnEmptyRecord(final String index) {
}

@Test
@MetafixToDo("See https://github.com/metafacture/metafacture-fix/issues/121")
public void shouldAddArraySubFieldWithAsterisk() {
MetafixTestHelpers.assertFix(streamReceiver, Arrays.asList(
"add_field('coll[].*.c', 'test')"
Expand Down Expand Up @@ -1172,7 +1171,7 @@ public void shouldAddArraySubFieldWithAsterisk() {
o.get().startEntity("4");
o.get().literal("a", "Crocodile");
o.get().literal("c", "test");
f.apply(3).endEntity();
f.apply(2).endEntity();
o.get().endRecord();
}
);
Expand Down

0 comments on commit 57ac842

Please sign in to comment.