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 <hchiramm@redhat.com>
This commit is contained in:
Humble Chirammal 2021-06-22 15:00:59 +05:30 committed by mergify[bot]
parent 847b996501
commit 9b6b83f73b

View File

@ -43,14 +43,6 @@ func setDefaultKubeconfig() {
}
}
var _ = BeforeSuite(func() {
})
var _ = AfterSuite(func() {
})
func TestE2E(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "E2e Suite")