Skip to content

Commit 2711774

Browse files
committed
fix lint
1 parent c8db2c1 commit 2711774

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

java-spanner/google-cloud-spanner/src/test/java/com/google/cloud/spanner/ChannelUsageTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
import io.grpc.ServerInterceptor;
3838
import io.grpc.netty.shaded.io.grpc.netty.NettyServerBuilder;
3939
import java.net.InetSocketAddress;
40+
import java.util.ArrayList;
4041
import java.util.Arrays;
4142
import java.util.Collection;
42-
import java.util.ArrayList;
4343
import java.util.Deque;
4444
import java.util.List;
4545
import java.util.Set;
@@ -241,8 +241,7 @@ public void testUsesAllChannels() throws Exception {
241241
}));
242242
}
243243
assertTrue(
244-
"Timed out while preparing concurrent transactions",
245-
ready.await(10, TimeUnit.SECONDS));
244+
"Timed out while preparing concurrent transactions", ready.await(10, TimeUnit.SECONDS));
246245
start.countDown();
247246
for (Future<?> future : futures) {
248247
future.get(20, TimeUnit.SECONDS);

0 commit comments

Comments
 (0)