Merge pull request #1489 from hj-johannes-lee/PR-2023-024

e2e,dsa,iaa: remove unnecessary layer ginkgo.Describe
This commit is contained in:
Hyeongju Lee 2023-08-29 11:43:35 +03:00 committed by GitHub
commit 0d8c686a3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 78 additions and 82 deletions

View File

@ -64,7 +64,6 @@ func describe() {
var dpPodName string
ginkgo.Describe("Without using operator", func() {
ginkgo.BeforeEach(func(ctx context.Context) {
ginkgo.By("deploying DSA plugin")
e2ekubectl.RunKubectlOrDie(f.Namespace.Name, "create", "configmap", "intel-dsa-config", "--from-file="+configmap)
@ -111,5 +110,4 @@ func describe() {
gomega.Expect(err).To(gomega.BeNil(), utils.GetPodLogs(ctx, f, podName, podName))
})
})
})
}

View File

@ -64,7 +64,6 @@ func describe() {
var dpPodName string
ginkgo.Describe("Without using operator", func() {
ginkgo.BeforeEach(func(ctx context.Context) {
ginkgo.By("deploying IAA plugin")
e2ekubectl.RunKubectlOrDie(f.Namespace.Name, "create", "configmap", "intel-iaa-config", "--from-file="+configmap)
@ -111,5 +110,4 @@ func describe() {
gomega.Expect(err).To(gomega.BeNil(), utils.GetPodLogs(ctx, f, podName, podName))
})
})
})
}