Skip to content

Commit

Permalink
Cleanup aftert test should remove namespace (#6791)
Browse files Browse the repository at this point in the history
Signed-off-by: m-szalik <[email protected]>
  • Loading branch information
m-szalik committed Jul 26, 2024
1 parent e95abdb commit 8d954b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testdata/go/v4/memcached-operator/test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var _ = Describe("memcached", Ordered, func() {
utils.UninstallCertManager()

By("removing manager namespace")
cmd := exec.Command("kubectl", "create", "ns", namespace)
cmd := exec.Command("kubectl", "delete", "ns", namespace)
_, _ = utils.Run(cmd)
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ var _ = Describe("memcached", Ordered, func() {
utils.UninstallCertManager()

By("removing manager namespace")
cmd := exec.Command("kubectl", "create", "ns", namespace)
cmd := exec.Command("kubectl", "delete", "ns", namespace)
_, _ = utils.Run(cmd)
})

Expand Down

0 comments on commit 8d954b6

Please sign in to comment.