From 9a99845bb9a25a3d38dcf9e149cd9baf99f044fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= Date: Thu, 7 Mar 2024 15:30:14 +0100 Subject: [PATCH] Fix linting issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- csi/test/mount_integration_test.go | 2 +- disk-mapper/internal/test/integration_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.