Skip to content

Commit

Permalink
ci: fix the namespace in test
Browse files Browse the repository at this point in the history
fixed the namespace in the vsg
test

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
  • Loading branch information
Madhu-1 committed Sep 10, 2024
1 parent 97ef0f5 commit d83377d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/cephfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ var _ = Describe(cephfsType, func() {
framework.Failf("failed to create CephFS storageclass: %v", err)
}
scName := "csi-cephfs-sc"
base, err := newVolumeGroupSnapshotBase(f, scName, f.UniqueName, false, deployTimeout, 3)
base, err := newVolumeGroupSnapshotBase(f, f.UniqueName, scName, false, deployTimeout, 3)
if err != nil {
framework.Failf("failed to create volumeGroupSnapshot Base: %v", err)
}
Expand Down
2 changes: 1 addition & 1 deletion e2e/volumegroupsnapshot_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (v volumeGroupSnapshotterBase) CreateVolumeGroupSnapshotClass(
return wait.PollUntilContextTimeout(
context.TODO(),
poll,
time.Duration(v.timeout),
time.Duration(v.timeout)*time.Minute,
true,
func(ctx context.Context) (bool, error) {
_, err := v.groupclient.VolumeGroupSnapshotClasses().Create(ctx, groupSnapshotClass, metav1.CreateOptions{})
Expand Down

0 comments on commit d83377d

Please sign in to comment.