Skip to content

Commit

Permalink
fix test as histogram can be read only once..
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <[email protected]>
  • Loading branch information
olamy committed Feb 20, 2017
1 parent f13de88 commit d576da7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void simple_test_limited_time_run()

Scheduler scheduler = new ScheduledExecutorScheduler( getClass().getName() + "-scheduler", false );

TimePerPathListener latency = new TimePerPathListener();
TimePerPathListener latency = new TimePerPathListener( false );

new LoadGenerator.Builder() //
.host( "localhost" ) //
Expand Down Expand Up @@ -87,7 +87,7 @@ public void simple_test_limited_number_run_async_call()

Scheduler scheduler = new ScheduledExecutorScheduler( getClass().getName() + "-scheduler", false );

TimePerPathListener result = new TimePerPathListener();
TimePerPathListener result = new TimePerPathListener( false );

LoadGenerator loadGenerator = //
new LoadGenerator.Builder() //
Expand Down Expand Up @@ -130,7 +130,7 @@ public void simple_test_limited_number_run_sync_call()

Scheduler scheduler = new ScheduledExecutorScheduler( getClass().getName() + "-scheduler", false );

TimePerPathListener result = new TimePerPathListener();
TimePerPathListener result = new TimePerPathListener( false );

LoadGenerator loadGenerator = //
new LoadGenerator.Builder() //
Expand Down

0 comments on commit d576da7

Please sign in to comment.