diff --git a/csi/test/mount_integration_test.go b/csi/test/mount_integration_test.go index 986636bf1..36e9f7b15 100644 --- a/csi/test/mount_integration_test.go +++ b/csi/test/mount_integration_test.go @@ -31,7 +31,7 @@ const ( deviceName string = "testDeviceName" ) -var toolsEnvs []string = []string{"CP", "DD", "RM", "FSCK_EXT4", "MKFS_EXT4", "BLKID", "FSCK", "MOUNT", "UMOUNT"} +var toolsEnvs = []string{"CP", "DD", "RM", "FSCK_EXT4", "MKFS_EXT4", "BLKID", "FSCK", "MOUNT", "UMOUNT"} // addToolsToPATH is used to update the PATH to contain necessary tool binaries for // coreutils, util-linux and ext4. diff --git a/disk-mapper/internal/test/integration_test.go b/disk-mapper/internal/test/integration_test.go index cc865c256..5f0478839 100644 --- a/disk-mapper/internal/test/integration_test.go +++ b/disk-mapper/internal/test/integration_test.go @@ -37,7 +37,7 @@ const ( var diskPath = flag.String("disk", "", "Path to the disk to use for the benchmark") -var toolsEnvs []string = []string{"DD", "RM"} +var toolsEnvs = []string{"DD", "RM"} // addToolsToPATH is used to update the PATH to contain necessary tool binaries for // coreutils.