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) {
59
59
this .objectPattern = objectPattern ;
60
60
try {
61
61
this .fix = new Metafix ("nothing()" );
62
- this .fix .setRepeatedFieldsToEntities (false );
62
+ this .fix .setRepeatedFieldsToEntities (true );
63
63
}
64
64
catch (final IOException e ) {
65
65
throw new MetafactureException (e );
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ public FindFixPathsTest() {
46
46
@ Test
47
47
public void testShouldFindPaths () {
48
48
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?" );
51
51
}
52
52
53
53
private void processRecord () {
@@ -73,7 +73,6 @@ private void verify(final String... result) throws MockitoAssertionError {
73
73
}
74
74
ordered .verify (receiver , Mockito .times (2 )).closeStream ();
75
75
ordered .verifyNoMoreInteractions ();
76
- Mockito .verifyNoMoreInteractions (receiver );
77
76
}
78
77
catch (final MockitoAssertionError e ) {
79
78
System .out .println (Mockito .mockingDetails (receiver ).printInvocations ());
You can’t perform that action at this time.
0 commit comments