Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
Signed-off-by: everettraven <everettraven@gmail.com>
  • Loading branch information
everettraven committed May 10, 2024
1 parent 414a379 commit ae1c33e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions test/e2e/plain_provisioner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"

Check failure on line 16 in test/e2e/plain_provisioner_test.go

View workflow job for this annotation

GitHub Actions / lint

File is not `gci`-ed with --skip-generated -s standard -s dot -s default -s prefix(github.com/operator-framework) -s prefix(github.com/operator-framework/rukpak) --custom-order (gci)

batchv1 "k8s.io/api/batch/v1"
corev1 "k8s.io/api/core/v1"
rbacv1 "k8s.io/api/rbac/v1"
Expand Down Expand Up @@ -253,12 +252,12 @@ var _ = Describe("plain provisioner bundle", func() {
return false
}
unpackPending := meta.FindStatusCondition(bundleDeployment.Status.Conditions, rukpakv1alpha2.PhaseUnpacked)
if unpackPending == nil {
return false
}
if !strings.Contains(unpackPending.Message, "source bundle content: error fetching image descriptor") {
return false
}
if unpackPending == nil {
return false
}
if !strings.Contains(unpackPending.Message, "source bundle content: error fetching image descriptor") {
return false
}
return true
}).Should(BeTrue())
})
Expand Down

0 comments on commit ae1c33e

Please sign in to comment.