Skip to content

Commit

Permalink
fix: Add another option to unknown host test output
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmidyson committed Sep 12, 2022
1 parent 9c17fc3 commit 18c4636
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/e2e/helmbundle/create_bundle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ var _ = Describe("Create Bundle", func() {
err := cmd.Execute()
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(
MatchRegexp("dial tcp: lookup unknownchartrepository(?: on .+)?: no such host"),
MatchRegexp(
"dial tcp: lookup unknownchartrepository(?: on .+)?: (?:no such host|Temporary failure in name resolution)",
),
)
})

Expand Down

0 comments on commit 18c4636

Please sign in to comment.