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

Commit 04cb76e

Browse files
skip the test for emulator
1 parent 8fa2721 commit 04cb76e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616

1717
package com.google.cloud.spanner;
1818

19+
import static com.google.cloud.spanner.testing.EmulatorSpannerHelper.isUsingEmulator;
1920
import static com.google.common.truth.Truth.assertThat;
2021
import static org.junit.Assert.assertTrue;
22+
import static org.junit.Assume.assumeFalse;
2123

2224
import org.junit.Assert;
2325
import org.junit.ClassRule;
@@ -34,6 +36,8 @@ public class ITTransactionRetryTest {
3436

3537
@Test
3638
public void TestRetryInfo() {
39+
assumeFalse("emulator does not support parallel transaction", isUsingEmulator());
40+
3741
// Creating a database with the table which contains INT64 columns
3842
Database db =
3943
env.getTestHelper()

0 commit comments

Comments
 (0)