We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 488db15 commit c7344c0Copy full SHA for c7344c0
google-cloud-spanner/src/test/java/com/google/cloud/spanner/IsRetryableInternalErrorTest.java
@@ -17,6 +17,7 @@
17
package com.google.cloud.spanner;
18
19
import static com.google.common.truth.Truth.assertThat;
20
+import static org.junit.Assert.assertTrue;
21
22
import com.google.api.gax.grpc.GrpcStatusCode;
23
import com.google.api.gax.rpc.InternalException;
@@ -123,7 +124,7 @@ public void rstStreamInternalExceptionIsRetryable() {
123
124
GrpcStatusCode.of(Code.INTERNAL),
125
false);
126
- assertThat(predicate.apply(e)).isTrue();
127
+ assertTrue(predicate.apply(e));
128
}
129
130
@Test
0 commit comments