We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a6e5d commit e8c5df8Copy full SHA for e8c5df8
.travis.yml
@@ -1,7 +1,8 @@
1
language: go
2
3
go:
4
- - 1.11.x
+ - 1.11.11
5
+ - 1.11.5
6
7
before_install:
8
- go get -u github.com/golang/dep/cmd/dep
@@ -14,4 +15,4 @@ script:
14
15
- gometalinter.v2 --vendor --deadline=300s ./...
16
17
notifications:
- email: false
18
+ email: false
request_test.go
@@ -267,7 +267,7 @@ func TestDoOtherErrors(t *testing.T) {
267
})
268
269
t.Run("request cannot be sent", func(t *testing.T) {
270
- params := Params{URL: "\n"}
+ params := Params{URL: "http://"}
271
err := Do(params, nil)
272
if assert.Error(t, err) {
273
assert.Contains(t, err.Error(), "failed to send request")
0 commit comments