Skip to content

Commit

Permalink
Try to fix the TestBackupAndRestore e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszsek committed Feb 6, 2020
1 parent becfe2c commit 987b400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/restorebackup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

const pvcName = "pvc"
const pvcName = "pvc-jenkins"

func TestBackupAndRestore(t *testing.T) {
t.Parallel()
Expand Down Expand Up @@ -74,7 +74,7 @@ func createPVC(t *testing.T, namespace string) {
Namespace: namespace,
},
Spec: corev1.PersistentVolumeClaimSpec{
AccessModes: []corev1.PersistentVolumeAccessMode{corev1.ReadWriteOnce},
AccessModes: []corev1.PersistentVolumeAccessMode{corev1.ReadWriteMany},
Resources: corev1.ResourceRequirements{
Requests: corev1.ResourceList{
corev1.ResourceStorage: resource.MustParse("1Gi"),
Expand Down

0 comments on commit 987b400

Please sign in to comment.