Skip to content

Commit bd45d78

Browse files
authored
test(bigtable): fix mv tests (#2608)
1 parent 1c78b77 commit bd45d78

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/admin/v2/it/BigtableMaterializedViewIT.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,12 @@
4343
import org.junit.Before;
4444
import org.junit.BeforeClass;
4545
import org.junit.ClassRule;
46-
import org.junit.Ignore;
4746
import org.junit.Rule;
4847
import org.junit.Test;
4948
import org.junit.runner.RunWith;
5049
import org.junit.runners.JUnit4;
5150

5251
@RunWith(JUnit4.class)
53-
@Ignore("Skipping while debugging root cause for failures")
5452
public class BigtableMaterializedViewIT {
5553
@ClassRule public static final TestEnvRule testEnvRule = new TestEnvRule();
5654
@Rule public final PrefixGenerator prefixGenerator = new PrefixGenerator();
@@ -82,8 +80,7 @@ public static void createInstance() throws IOException {
8280
CreateInstanceRequest.of(new PrefixGenerator().newPrefix())
8381
.addCluster("my-cluster", "us-east1-c", 3, StorageType.SSD));
8482
instanceId = instance.getId();
85-
tableAdminClient =
86-
BigtableTableAdminClient.create(testEnvRule.env().getProjectId(), instanceId);
83+
tableAdminClient = testEnvRule.env().getTableAdminClientForInstance(instanceId);
8784
}
8885

8986
@AfterClass

0 commit comments

Comments
 (0)