Skip to content

Commit aa85b87

Browse files
Fixed style
1 parent 7a86cd3 commit aa85b87

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

compute/cloud-client/src/test/java/compute/reservation/ReservationIT.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ public class ReservationIT {
5858
private static ReservationsClient reservationsClient;
5959
private static final String RESERVATION_NAME_GLOBAL = "test-reservation-global-" + javaVersion
6060
+ "-" + UUID.randomUUID().toString().substring(0, 8);
61-
private static final String RESERVATION_NAME_REGIONAL = "test-reservation-regional-" + javaVersion
62-
+ "-" + UUID.randomUUID().toString().substring(0, 8);
61+
private static final String RESERVATION_NAME_REGIONAL = "test-reservation-regional-"
62+
+ javaVersion + "-" + UUID.randomUUID().toString().substring(0, 8);
6363
private static final String GLOBAL_INSTANCE_TEMPLATE_NAME =
6464
"test-global-inst-temp-" + javaVersion + "-" + UUID.randomUUID().toString().substring(0, 8);
65-
private static final String REGIONAL_INSTANCE_TEMPLATE_NAME =
66-
"test-regional-inst-temp-" + javaVersion + "-" + UUID.randomUUID().toString().substring(0, 8);
67-
private static final String GLOBAL_INSTANCE_TEMPLATE_URI =
68-
String.format("projects/%s/global/instanceTemplates/%s", PROJECT_ID, GLOBAL_INSTANCE_TEMPLATE_NAME);
65+
private static final String REGIONAL_INSTANCE_TEMPLATE_NAME = "test-regional-inst-temp-"
66+
+ javaVersion + "-" + UUID.randomUUID().toString().substring(0, 8);
67+
private static final String GLOBAL_INSTANCE_TEMPLATE_URI = String.format(
68+
"projects/%s/global/instanceTemplates/%s", PROJECT_ID, GLOBAL_INSTANCE_TEMPLATE_NAME);
6969
private static final String REGIONAL_INSTANCE_TEMPLATE_URI =
7070
String.format("projects/%s/regions/%s/instanceTemplates/%s",
7171
PROJECT_ID, REGION, REGIONAL_INSTANCE_TEMPLATE_NAME);

0 commit comments

Comments
 (0)