File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
main/java/org/metafacture/metafix
test/java/org/metafacture/metafix Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public FindFixPaths(final String objectPattern) {
5959 this .objectPattern = objectPattern ;
6060 try {
6161 this .fix = new Metafix ("nothing()" );
62- this .fix .setRepeatedFieldsToEntities (false );
62+ this .fix .setRepeatedFieldsToEntities (true );
6363 }
6464 catch (final IOException e ) {
6565 throw new MetafactureException (e );
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ public FindFixPathsTest() {
4646 @ Test
4747 public void testShouldFindPaths () {
4848 verify (
49- "a\t |\t An ETL test" ,
50- "c\t |\t ETL what?" );
49+ "a.1 \t |\t An ETL test" ,
50+ "c.2 \t |\t ETL what?" );
5151 }
5252
5353 private void processRecord () {
@@ -73,7 +73,6 @@ private void verify(final String... result) throws MockitoAssertionError {
7373 }
7474 ordered .verify (receiver , Mockito .times (2 )).closeStream ();
7575 ordered .verifyNoMoreInteractions ();
76- Mockito .verifyNoMoreInteractions (receiver );
7776 }
7877 catch (final MockitoAssertionError e ) {
7978 System .out .println (Mockito .mockingDetails (receiver ).printInvocations ());
You can’t perform that action at this time.
0 commit comments