Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit b009bca

Browse files
committed
change NotThreadSafe annotiation for the fallback tests
1 parent 5c740f6 commit b009bca

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

google-cloud-bigtable/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,12 @@
346346
<artifactId>guava-testlib</artifactId>
347347
<scope>test</scope>
348348
</dependency>
349+
<dependency>
350+
<groupId>com.github.stephenc.jcip</groupId>
351+
<artifactId>jcip-annotations</artifactId>
352+
<version>1.0-1</version>
353+
<scope>test</scope>
354+
</dependency>
349355
</dependencies>
350356

351357
<profiles>

google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/gaxx/grpc/fallback/GcpFallbackChannelTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
import java.util.concurrent.atomic.AtomicLong;
8585
import java.util.function.Function;
8686
import javax.annotation.Nonnull;
87-
import javax.annotation.concurrent.NotThreadSafe;
8887
import org.junit.After;
8988
import org.junit.Before;
9089
import org.junit.Test;
@@ -93,6 +92,7 @@
9392
import org.mockito.Captor;
9493
import org.mockito.Mock;
9594
import org.mockito.junit.MockitoJUnitRunner;
95+
import net.jcip.annotations.NotThreadSafe;
9696

9797
@NotThreadSafe
9898
@RunWith(MockitoJUnitRunner.class)

0 commit comments

Comments
 (0)