From 913ebde60e780f2abb8b806b762042f6e104db95 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Fri, 7 May 2021 15:02:04 +0200 Subject: [PATCH] update volume_test again --- pkg/cluster/volumes_test.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkg/cluster/volumes_test.go b/pkg/cluster/volumes_test.go index 3c523c994..6a33bacf7 100644 --- a/pkg/cluster/volumes_test.go +++ b/pkg/cluster/volumes_test.go @@ -361,14 +361,7 @@ func TestManualGp2Gp3Support(t *testing.T) { cluster.Namespace = namespace filterLabels := cluster.labelsSet(false) - testVolumes := []testVolume{ - { - size: 150, - }, - { - size: 150, - }, - } + testVolumes := []testVolume{testVol, testVol} initTestVolumesAndPods(cluster.KubeClient, namespace, clusterName, filterLabels, testVolumes) @@ -420,7 +413,14 @@ func TestDontTouchType(t *testing.T) { cluster.Namespace = namespace filterLabels := cluster.labelsSet(false) - testVolumes := []testVolume{testVol, testVol} + testVolumes := []testVolume{ + { + size: 150, + }, + { + size: 150, + }, + } initTestVolumesAndPods(cluster.KubeClient, namespace, clusterName, filterLabels, testVolumes)