Skip to content

Commit

Permalink
Update failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
banjoh committed Sep 21, 2023
1 parent 2c2132d commit 90917d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/kots/cli/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,9 @@ var _ = Describe("Install", func() {
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring(expectedErr))
},
Entry("warnings and failures", true, true, "There are preflight check failures and warnings for the application"),
Entry("warnings only", false, true, "There are preflight check warnings for the application"),
Entry("failures only", true, false, "There are preflight check failures for the application"),
Entry("warnings and failures", true, true, "Preflight checks have warnings or errors"),
Entry("warnings only", false, true, "Preflight checks have warnings or errors"),
Entry("failures only", true, false, "Preflight checks have warnings or errors"),
)

It("does not return an error if there are no warnings and failures", func() {
Expand Down

0 comments on commit 90917d4

Please sign in to comment.