Skip to content

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 Apr 30, 2024
1 parent 13ee5e5 commit 7bacbdf
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkg/client/actionclient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,10 @@ var _ = Describe("ActionClient", func() {
})
})
When("preflight checks are configured for install operation", func() {
AfterEach(func() {
// Reset preflights
ac.(*actionClient).preflights = []Preflight{}
})
AfterEach(func() {
// Reset preflights
ac.(*actionClient).preflights = []Preflight{}
})
It("should fail if preflight checks fail during install", func() {
ac.(*actionClient).preflights = []Preflight{
NewPreflightFunc("installFail", func(_ string, _ *release.Release) error {
Expand Down Expand Up @@ -535,9 +535,9 @@ var _ = Describe("ActionClient", func() {
})
})
When("preflight checks are configured for upgrade operation", func() {
AfterEach(func() {
ac.(*actionClient).preflights = []Preflight{}
})
AfterEach(func() {
ac.(*actionClient).preflights = []Preflight{}
})
It("should fail if preflight checks fail during upgrade", func() {
ac.(*actionClient).preflights = []Preflight{
NewPreflightFunc("upgradeFail", func(_ string, _ *release.Release) error {
Expand Down Expand Up @@ -593,9 +593,9 @@ var _ = Describe("ActionClient", func() {
})
})
When("preflight checks are configured for uninstall operation", func() {
AfterEach(func() {
ac.(*actionClient).preflights = []Preflight{}
})
AfterEach(func() {
ac.(*actionClient).preflights = []Preflight{}
})
It("should fail if preflight checks fail during uninstall", func() {
ac.(*actionClient).preflights = []Preflight{
NewPreflightFunc("uninstallFail", func(_ string, _ *release.Release) error {
Expand Down

0 comments on commit 7bacbdf

Please sign in to comment.