Skip to content

Commit 205af17

Browse files
committed
chore(spanner): lint fix
1 parent 7d1deef commit 205af17

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import static com.google.common.truth.Truth.assertThat;
2121
import static org.junit.Assert.assertThrows;
2222
import static org.junit.Assert.assertTrue;
23-
import static org.junit.Assume.assumeFalse;
2423

2524
import com.google.api.core.ApiFuture;
2625
import com.google.api.core.ApiFutures;

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import static org.junit.Assert.assertNotNull;
2929
import static org.junit.Assert.assertThrows;
3030
import static org.junit.Assert.assertTrue;
31-
import static org.junit.Assume.assumeFalse;
3231

3332
import com.google.api.core.ApiFuture;
3433
import com.google.api.core.ApiFutureCallback;
@@ -944,7 +943,7 @@ public void asyncTransactionManagerBatchUpdateAbortedWithoutGettingResult() thro
944943
List<Class<? extends AbstractMessage>> requests = mockSpanner.getRequestTypes();
945944
// Remove the CreateSession requests for multiplexed sessions, as those are not relevant for
946945
// this test if multiplexed session for read-write is not enabled.
947-
if (!isMultiplexedSessionsEnabledForRW()){
946+
if (!isMultiplexedSessionsEnabledForRW()) {
948947
requests.removeIf(request -> request == CreateSessionRequest.class);
949948
}
950949
int size = Iterables.size(requests);

0 commit comments

Comments
 (0)