Skip to content

Commit 7570e73

Browse files
Fixed variable
1 parent 540b943 commit 7570e73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compute/cloud-client/src/main/java/compute/disks/CreateDiskSecondaryCustom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void main(String[] args)
4848
// Name of the zone in which you want to create the secondary disk.
4949
String secondaryDiskZone = "us-east1-c";
5050
// Size of the new disk in gigabytes.
51-
long diskSizeGb = 100;
51+
long diskSizeGb = 10L;
5252
// The type of the disk you want to create. This value uses the following format:
5353
// "projects/{projectId}/zones/{zone}/diskTypes/
5454
// (pd-standard|pd-ssd|pd-balanced|pd-extreme)".

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class DisksIT {
7373
private static String ZONAL_BLANK_DISK;
7474
private static String REGIONAL_BLANK_DISK;
7575
private static String SECONDARY_DISK_CUSTOM;
76-
private static final long DISK_SIZE = 10;
76+
private static final long DISK_SIZE = 10L;
7777

7878
private ByteArrayOutputStream stdOut;
7979

0 commit comments

Comments
 (0)