diff --git a/javatests/google/registry/tools/server/KillAllCommitLogsActionTest.java b/javatests/google/registry/tools/server/KillAllCommitLogsActionTest.java index 57064bd87..1d68b960c 100644 --- a/javatests/google/registry/tools/server/KillAllCommitLogsActionTest.java +++ b/javatests/google/registry/tools/server/KillAllCommitLogsActionTest.java @@ -39,7 +39,6 @@ import google.registry.model.ofy.CommitLogManifest; import google.registry.model.ofy.CommitLogMutation; import google.registry.testing.FakeResponse; import google.registry.testing.mapreduce.MapreduceTestCase; -import java.util.List; import org.joda.time.DateTime; import org.junit.Test; import org.junit.runner.RunWith; @@ -49,12 +48,13 @@ import org.junit.runners.JUnit4; @RunWith(JUnit4.class) public class KillAllCommitLogsActionTest extends MapreduceTestCase { - static final List> AFFECTED_TYPES = ImmutableList.of( - CommitLogBucket.class, - CommitLogCheckpoint.class, - CommitLogCheckpointRoot.class, - CommitLogMutation.class, - CommitLogManifest.class); + static final ImmutableList> AFFECTED_TYPES = + ImmutableList.of( + CommitLogBucket.class, + CommitLogCheckpoint.class, + CommitLogCheckpointRoot.class, + CommitLogMutation.class, + CommitLogManifest.class); private void runMapreduce() throws Exception { action = new KillAllCommitLogsAction();