Skip to content

Commit 5fc07af

Browse files
Cleaned Storage Pool
1 parent c04ed28 commit 5fc07af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compute/cloud-client/src/test/java/compute/disks/HyperdisksIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ public static void cleanup()
7878
//Util.deleteStoragePool(PROJECT_ID, ZONE, STORAGE_POOL_NAME);
7979
}
8080

81-
@Disabled
8281
@Test
8382
public void stage1_CreateHyperdiskTest()
8483
throws IOException, ExecutionException, InterruptedException, TimeoutException {
@@ -117,6 +116,7 @@ public void stage1_CreateHyperdiskStoragePoolTest()
117116
Assert.assertTrue(storagePool.getZone().contains(ZONE));
118117
}
119118

119+
@Disabled
120120
@Test
121121
public void stage2_CreateHyperdiskStoragePoolTest()
122122
throws IOException, ExecutionException, InterruptedException, TimeoutException {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ public static void setUp()
5959
throws IOException, ExecutionException, InterruptedException, TimeoutException {
6060
requireEnvVar("GOOGLE_APPLICATION_CREDENTIALS");
6161
requireEnvVar("GOOGLE_CLOUD_PROJECT");
62-
RESERVATION_NAME = "test-reservation-" + javaVersion + "-"
62+
RESERVATION_NAME = "test-reserv" + javaVersion + "-"
6363
+ UUID.randomUUID().toString().substring(0, 8);
6464

6565
// Cleanup existing stale resources.
66-
Util.cleanUpExistingReservations("test-reservation-" + javaVersion, PROJECT_ID, ZONE);
66+
Util.cleanUpExistingReservations("test-reserv" + javaVersion, PROJECT_ID, ZONE);
6767

6868
CreateReservation.createReservation(
6969
PROJECT_ID, RESERVATION_NAME, NUMBER_OF_VMS, ZONE);

0 commit comments

Comments
 (0)