Skip to content

Commit

Permalink
HV-1160 Fix minor typo in TestRunner
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Nov 25, 2016
1 parent 9a85ab9 commit f39f404
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -76,8 +76,8 @@ public static void runTest(String[] profilers, String... classNames) throws Runn
.resultFormat( ResultFormatType.JSON )
.result( "target/JmhResults.json" );
Arrays.stream( profilers )
.filter( profileKey -> PROFILERS.containsKey( profileKey ) )
.forEach( profileKey -> builder.addProfiler( PROFILERS.get( profileKey ) ) );
.filter( profilerKey -> PROFILERS.containsKey( profilerKey ) )
.forEach( profilerKey -> builder.addProfiler( PROFILERS.get( profilerKey ) ) );
Arrays.stream( classNames )
.forEach( className -> builder.include( className ) );

Expand Down

0 comments on commit f39f404

Please sign in to comment.