Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/auto pruning #105

Merged
4 changes: 2 additions & 2 deletions prune/prune_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ var _ = Describe("Prune", func() {

Describe("Prune()", func() {
Context("Does not return an Error", func() {
It("Should Prune Pods with Default IsPrunableFunc", func() {
It("Should Prune Pods with Default IsPrunableFunc", func() { //nolint:dupl
// Create the test resources - in this case Pods
err := createTestPods(fakeClient)
Expect(err).Should(BeNil())
Expand All @@ -210,7 +210,7 @@ var _ = Describe("Prune", func() {
Expect(len(pods.Items)).Should(Equal(1))
})

It("Should Prune Jobs with Default IsPrunableFunc", func() {
It("Should Prune Jobs with Default IsPrunableFunc", func() { //nolint:dupl
everettraven marked this conversation as resolved.
Show resolved Hide resolved
// Create the test resources - in this case Jobs
err := createTestJobs(fakeClient)
Expect(err).Should(BeNil())
Expand Down