Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
0xERR0R committed Jun 7, 2022
2 parents 97aa99d + 070fc88 commit eb305d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ changelog:
filters:
exclude:
- '^docs:'
- '^chore:'
- '^test:'
2 changes: 1 addition & 1 deletion lists/downloader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ var _ = Describe("Downloader", func() {
reader, err := sut.DownloadFile("http://some.domain.which.does.not.exist")
Expect(err).Should(HaveOccurred())
var dnsError *net.DNSError
Expect(errors.As(err, &dnsError)).To(BeTrue())
Expect(errors.As(err, &dnsError)).To(BeTrue(), "received error %w", err)
Expect(reader).Should(BeNil())

// failed download event was emitted 3 times
Expand Down

0 comments on commit eb305d7

Please sign in to comment.