Skip to content

Commit

Permalink
fix uuid length
Browse files Browse the repository at this point in the history
  • Loading branch information
billyjacobson committed Apr 30, 2020
1 parent 068cdcf commit 502a092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigtable/metricscaler/metricscaler_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
BIGTABLE_ZONE = os.environ['BIGTABLE_ZONE']
SIZE_CHANGE_STEP = 3
INSTANCE_ID_FORMAT = 'metric-scale-test-{}'
BIGTABLE_INSTANCE = INSTANCE_ID_FORMAT.format(uuid.uuid4())
BIGTABLE_DEV_INSTANCE = INSTANCE_ID_FORMAT.format(uuid.uuid4())
BIGTABLE_INSTANCE = INSTANCE_ID_FORMAT.format(str(uuid.uuid4())[:16])
BIGTABLE_DEV_INSTANCE = INSTANCE_ID_FORMAT.format(str(uuid.uuid4())[:16])


# System tests to verify API calls succeed
Expand Down

0 comments on commit 502a092

Please sign in to comment.