From abc993ce252ca1a199d0853bc18d1742b220eb1d Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Fri, 25 Jun 2021 18:17:11 +0530 Subject: [PATCH] e2e: reformat long lines in this package to 120 chars We have many declarations and invocations..etc with long lines which are very difficult to follow while doing code reading. This address the issues in 'e2e/deploy_vault.go' file to restrict the line length to 120 chars. Signed-off-by: Humble Chirammal --- e2e/deploy-vault.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/e2e/deploy-vault.go b/e2e/deploy-vault.go index 6d27f533f..dccb450e7 100644 --- a/e2e/deploy-vault.go +++ b/e2e/deploy-vault.go @@ -22,7 +22,14 @@ var ( func deployVault(c kubernetes.Interface, deployTimeout int) { // hack to make helm E2E pass as helm charts creates this configmap as part // of cephcsi deployment - _, err := framework.RunKubectl(cephCSINamespace, "delete", "cm", "ceph-csi-encryption-kms-config", "--namespace", cephCSINamespace, "--ignore-not-found=true") + _, err := framework.RunKubectl( + cephCSINamespace, + "delete", + "cm", + "ceph-csi-encryption-kms-config", + "--namespace", + cephCSINamespace, + "--ignore-not-found=true") Expect(err).Should(BeNil()) createORDeleteVault("create")