Skip to content

Commit c7344c0

Browse files
rahul2393olavloite
andcommitted
Update google-cloud-spanner/src/test/java/com/google/cloud/spanner/IsRetryableInternalErrorTest.java
Co-authored-by: Knut Olav Løite <[email protected]>
1 parent 488db15 commit c7344c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package com.google.cloud.spanner;
1818

1919
import static com.google.common.truth.Truth.assertThat;
20+
import static org.junit.Assert.assertTrue;
2021

2122
import com.google.api.gax.grpc.GrpcStatusCode;
2223
import com.google.api.gax.rpc.InternalException;
@@ -123,7 +124,7 @@ public void rstStreamInternalExceptionIsRetryable() {
123124
GrpcStatusCode.of(Code.INTERNAL),
124125
false);
125126

126-
assertThat(predicate.apply(e)).isTrue();
127+
assertTrue(predicate.apply(e));
127128
}
128129

129130
@Test

0 commit comments

Comments
 (0)