Skip to content

Commit ad36a8d

Browse files
AVaksmansduskis
authored andcommitted
shortenning cluster ID in system test (googleapis#5719)
1 parent 9fa614b commit ad36a8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bigtable/tests/system.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ def test_create_instance_w_two_clusters(self):
214214
instance = Config.CLIENT.instance(ALT_INSTANCE_ID,
215215
instance_type=_PRODUCTION)
216216

217-
ALT_CLUSTER_ID_1 = ALT_INSTANCE_ID+'-cluster-1'
218-
ALT_CLUSTER_ID_2 = ALT_INSTANCE_ID+'-cluster-2'
217+
ALT_CLUSTER_ID_1 = ALT_INSTANCE_ID+'-c1'
218+
ALT_CLUSTER_ID_2 = ALT_INSTANCE_ID+'-c2'
219219
LOCATION_ID_2 = 'us-central1-f'
220220
STORAGE_TYPE = enums.StorageType.HDD
221221
cluster_1 = instance.cluster(
@@ -466,7 +466,7 @@ def test_create_cluster(self):
466466
from google.cloud.bigtable.enums import StorageType
467467
from google.cloud.bigtable.enums import Cluster
468468

469-
ALT_CLUSTER_ID = INSTANCE_ID+'-cluster-2'
469+
ALT_CLUSTER_ID = INSTANCE_ID+'-c2'
470470
ALT_LOCATION_ID = 'us-central1-f'
471471
ALT_SERVE_NODES = 4
472472

0 commit comments

Comments
 (0)