File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed 
metafix/src/test/java/org/metafacture/metafix Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -46,20 +46,27 @@ public FindFixPathsTest() {
4646    @ Test 
4747    public  void  testShouldFindPaths () {
4848        verify (
49-                 "a.1 \t |\t An ETL test" ,
49+                 "a\t |\t An ETL test" ,
5050                "c.2\t |\t ETL what?" );
5151    }
5252
5353    private  void  processRecord () {
5454        finder .setReceiver (receiver );
55-         finder .startRecord ("" );
55+         finder .startRecord ("1 " );
5656        finder .literal ("a" , "An ETL test" );
5757        finder .literal ("b" , "" );
5858        finder .literal ("b" , "Dummi" );
5959        finder .literal ("b" , "Dog" );
6060        finder .literal ("c" , "" );
6161        finder .literal ("c" , "ETL what?" );
62-         finder .literal ("a" , "An ETL test" );
62+         finder .endRecord ();
63+         finder .startRecord ("2" );
64+         finder .literal ("a" , "An another test" );
65+         finder .literal ("b" , "" );
66+         finder .literal ("b" , "Dummi" );
67+         finder .literal ("b" , "Dog" );
68+         finder .literal ("c" , "" );
69+         finder .literal ("c" , "ETL what?" );
6370        finder .endRecord ();
6471        finder .closeStream ();
6572    }
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments