Skip to content

Commit 18285df

Browse files
Fixed naming
1 parent 55b4e3f commit 18285df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
public class CrudOperationsReservationIT {
5050

5151
private static final String PROJECT_ID = System.getenv("GOOGLE_CLOUD_PROJECT");
52-
private static final String ZONE = "us-central1-a";
52+
private static final String ZONE = "us-west1-a";
5353
private static String RESERVATION_NAME;
5454
private static final int NUMBER_OF_VMS = 3;
5555
static String javaVersion = System.getProperty("java.version").substring(0, 2);
@@ -65,11 +65,11 @@ public static void setUp()
6565
throws IOException, ExecutionException, InterruptedException, TimeoutException {
6666
requireEnvVar("GOOGLE_APPLICATION_CREDENTIALS");
6767
requireEnvVar("GOOGLE_CLOUD_PROJECT");
68-
RESERVATION_NAME = "test-reservation" + javaVersion + "-"
68+
RESERVATION_NAME = "test-reservation-" + javaVersion + "-"
6969
+ UUID.randomUUID().toString().substring(0, 8);
7070

7171
// Cleanup existing stale resources.
72-
Util.cleanUpExistingReservations("test-reservation" + javaVersion, PROJECT_ID, ZONE);
72+
Util.cleanUpExistingReservations("test-reservation-" + javaVersion, PROJECT_ID, ZONE);
7373
}
7474

7575
@AfterAll

0 commit comments

Comments
 (0)