From 9b6b83f73b73ca55f4343020abd17933cb35aecb Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Tue, 22 Jun 2021 15:00:59 +0530 Subject: [PATCH] e2e: remove bootstrapper BeforeEach and AfterEach The e2e bootstrap does not make use of these or its declared unwantedly in the same, removing it with this commit. Signed-off-by: Humble Chirammal --- e2e/e2e_test.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/e2e/e2e_test.go b/e2e/e2e_test.go index b8af8bed0..9582fc44f 100644 --- a/e2e/e2e_test.go +++ b/e2e/e2e_test.go @@ -43,14 +43,6 @@ func setDefaultKubeconfig() { } } -var _ = BeforeSuite(func() { - -}) - -var _ = AfterSuite(func() { - -}) - func TestE2E(t *testing.T) { RegisterFailHandler(Fail) RunSpecs(t, "E2e Suite")