Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tjake committed Aug 13, 2015
1 parent 231040b commit 377ae4e
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -34,6 +34,7 @@
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;

import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.Iterables;
import com.google.common.util.concurrent.*;

Expand Down Expand Up @@ -95,7 +96,8 @@ public class CommitLogSegmentManager
private volatile boolean run = true;
private final CommitLog commitLog;

CommitLogSegmentManager(final CommitLog commitLog)
@VisibleForTesting
public CommitLogSegmentManager(final CommitLog commitLog)
{
this.commitLog = commitLog;
}
Expand Down

0 comments on commit 377ae4e

Please sign in to comment.