From 13e3da39ba322339af48b602ee80ce4c51c68b14 Mon Sep 17 00:00:00 2001 From: Michelle Au Date: Mon, 10 Sep 2018 13:29:52 -0700 Subject: [PATCH] Fix size of repd e2e to use Gi --- test/e2e/storage/regional_pd.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/storage/regional_pd.go b/test/e2e/storage/regional_pd.go index e4eb7b6b34d..baf0dd77989 100644 --- a/test/e2e/storage/regional_pd.go +++ b/test/e2e/storage/regional_pd.go @@ -99,8 +99,8 @@ func testVolumeProvisioning(c clientset.Interface, ns string) { "zones": strings.Join(cloudZones, ","), "replication-type": "regional-pd", }, - claimSize: "1.5G", - expectedSize: "2G", + claimSize: "1.5Gi", + expectedSize: "2Gi", pvCheck: func(volume *v1.PersistentVolume) error { err := checkGCEPD(volume, "pd-standard") if err != nil { @@ -117,8 +117,8 @@ func testVolumeProvisioning(c clientset.Interface, ns string) { "type": "pd-standard", "replication-type": "regional-pd", }, - claimSize: "1.5G", - expectedSize: "2G", + claimSize: "1.5Gi", + expectedSize: "2Gi", pvCheck: func(volume *v1.PersistentVolume) error { err := checkGCEPD(volume, "pd-standard") if err != nil {