File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed 
rewrite-kotlin/src/test/java/org/openrewrite/kotlin/tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ fun two() = "two"
6060            spec  -> spec .afterRecipe (cu  ->
6161              assertThat (cu .getTypesInUse ().getUsedMethods ())
6262                .singleElement ()
63-                 .satisfies (m  -> { 
64-                      assertThat (m .getDeclaringType ())
65-                        .satisfies (it  -> {
66-                            assertThat (it .getFullyQualifiedName ()).isEqualTo ("org.example.openRewriteFile1Kt" );
67-                            assertThat (it .getMethods ()).extracting (JavaType .Method ::getName ).containsExactlyInAnyOrder ("one" , "two" );
68-                       }); 
69-                 } )
63+                 .satisfies (m  ->
64+                   assertThat (m .getDeclaringType ())
65+                     .satisfies (it  -> {
66+                         assertThat (it .getFullyQualifiedName ()).isEqualTo ("org.example.openRewriteFile1Kt" );
67+                         assertThat (it .getMethods ()).extracting (JavaType .Method ::getName ).containsExactlyInAnyOrder ("one" , "two" );
68+                     }) 
69+                 )
7070            )
7171          )
7272        );
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments