Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/e2e/aws_disks.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func createAndAttachAWSVolumesForNode(t *testing.T, nodeEntry nodeDisks, ec2Clie
createInput := &ec2.CreateVolumeInput{
AvailabilityZone: aws.String(zone),
Size: aws.Int32(int32(diskSize)),
VolumeType: "gp2",
VolumeType: "gp3",
TagSpecifications: []ec2types.TagSpecification{
{
ResourceType: "volume",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gomega_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func eventuallyFindPVs(t *testing.T, f *framework.Framework, storageClassName st
matcher := gomega.NewWithT(t)
matcher.Eventually(func() []corev1.PersistentVolume {
pvList := &corev1.PersistentVolumeList{}
t.Log(fmt.Sprintf("waiting for %d PVs to be created with StorageClass: %q", expectedPVs, storageClassName))
t.Logf("waiting for %d PVs to be created with StorageClass: %q", expectedPVs, storageClassName)
matcher.Eventually(func() error {
return f.Client.List(context.TODO(), pvList)
}).ShouldNot(gomega.HaveOccurred())
Expand Down
Loading