Skip to content

Commit

Permalink
Add missing [negative] labels (#907)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebrandon1 authored Sep 6, 2024
1 parent d460919 commit 71ef3cd
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ var _ = Describe("Access-control pod-service-account,", func() {
})

It("one pod with valid service account", func() {

By("Create service account")
err := globalhelper.CreateServiceAccount(
tsparams.TestServiceAccount, randomNamespace)
Expand Down Expand Up @@ -64,10 +63,8 @@ var _ = Describe("Access-control pod-service-account,", func() {
Expect(err).ToNot(HaveOccurred())
})

It("one pod with empty service account", func() {

It("one pod with empty service account [negative]", func() {
By("Define pod with empty service account")

testPod := pod.DefinePod(tsparams.TestPodName, randomNamespace,
globalhelper.GetConfiguration().General.TestImage, tsparams.TestDeploymentLabels)

Expand All @@ -88,10 +85,8 @@ var _ = Describe("Access-control pod-service-account,", func() {
Expect(err).ToNot(HaveOccurred())
})

It("one pod with default service account", func() {

It("one pod with default service account [negative]", func() {
By("Define pod with empty service account")

testPod := pod.DefinePod(tsparams.TestPodName, randomNamespace,
globalhelper.GetConfiguration().General.TestImage, tsparams.TestDeploymentLabels)

Expand Down

0 comments on commit 71ef3cd

Please sign in to comment.