Skip to content

Commit 788c277

Browse files
committed
fix: change clusterId in Cmek test
Change-Id: Idc8ad885205190374b089349ee94cc627bafd782
1 parent da919e1 commit 788c277

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public class BigtableCmekIT {
7070
private static String instanceId;
7171
private static String clusterId1;
7272
private static String clusterId2;
73+
private static String clusterId3;
7374
private static String kmsKeyName;
7475
private static List<String> zones;
7576
private static String otherZone;
@@ -91,6 +92,7 @@ public static void validatePlatform() throws IOException {
9192
instanceId = AbstractTestEnv.TEST_INSTANCE_PREFIX + Instant.now().getEpochSecond();
9293
clusterId1 = instanceId + "-c1";
9394
clusterId2 = instanceId + "-c2";
95+
clusterId3 = instanceId + "-c3";
9496
zones = testEnvRule.env().getMultipleZonesInSameRegion();
9597
otherZone =
9698
Sets.difference(
@@ -149,7 +151,7 @@ public void instanceAndClusterTest() {
149151

150152
try {
151153
instanceAdmin.createCluster(
152-
CreateClusterRequest.of(instanceId, clusterId2)
154+
CreateClusterRequest.of(instanceId, clusterId3)
153155
.setZone(otherZone)
154156
.setServeNodes(1)
155157
.setStorageType(StorageType.SSD)

0 commit comments

Comments
 (0)