File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
main/java/org/metafacture/metafix
test/java/org/metafacture/metafix Expand file tree Collapse file tree 2 files changed +3
-2
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 (true );
62
+ this .fix .setRepeatedFieldsToEntities (false );
63
63
}
64
64
catch (final IOException e ) {
65
65
throw new MetafactureException (e );
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public FindFixPathsTest() {
47
47
public void testShouldFindPaths () {
48
48
verify (
49
49
"a\t |\t An ETL test" ,
50
- "c.2 \t |\t ETL what?" );
50
+ "c\t |\t ETL what?" );
51
51
}
52
52
53
53
private void processRecord () {
@@ -59,6 +59,7 @@ private void processRecord() {
59
59
finder .literal ("b" , "Dog" );
60
60
finder .literal ("c" , "" );
61
61
finder .literal ("c" , "ETL what?" );
62
+ finder .literal ("a" , "An ETL test" );
62
63
finder .endRecord ();
63
64
finder .closeStream ();
64
65
}
You can’t perform that action at this time.
0 commit comments