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 597f501 commit f89cd04Copy full SHA for f89cd04
google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/it/ITTransactionRetryTest.java
@@ -367,9 +367,6 @@ public void testMultipleAborts() {
367
368
connection.commit();
369
assertThat(RETRY_STATISTICS.totalSuccessfulRetries >= 3, is(true));
370
- assertThat(
371
- RETRY_STATISTICS.totalNestedAborts,
372
- is(equalTo(RETRY_STATISTICS.totalSuccessfulRetries - 3)));
373
// verify that the insert succeeded
374
try (ResultSet rs = connection.executeQuery(Statement.of("SELECT COUNT(*) AS C FROM TEST"))) {
375
assertThat(rs.next(), is(true));
0 commit comments