Skip to content

Commit 15cfd05

Browse files
authored
Merge pull request #560 from hashicorp/fix-module-dev-deps
Get rid of depreqs pacakge
2 parents e516ab3 + cbc2184 commit 15cfd05

File tree

4 files changed

+1
-16
lines changed

4 files changed

+1
-16
lines changed

depreqs/gox.go

Lines changed: 0 additions & 9 deletions
This file was deleted.

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ require (
1010
github.com/hashicorp/mdns v1.0.0
1111
github.com/hashicorp/memberlist v0.1.3
1212
github.com/mitchellh/cli v1.0.0
13-
github.com/mitchellh/gox v0.4.0
14-
github.com/mitchellh/iochan v1.0.0 // indirect
1513
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee
1614
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f
1715
github.com/stretchr/testify v1.3.0 // indirect

go.sum

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,6 @@ github.com/miekg/dns v1.0.14 h1:9jZdLNd/P4+SfEJ0TNyxYpsK8N4GtfylBLqtbYN1sbA=
4747
github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
4848
github.com/mitchellh/cli v1.0.0 h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=
4949
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
50-
github.com/mitchellh/gox v0.4.0 h1:lfGJxY7ToLJQjHHwi0EX6uYBdK78egf954SQl13PQJc=
51-
github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg=
52-
github.com/mitchellh/iochan v1.0.0 h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY=
53-
github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY=
5450
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee h1:kK7VuFVykgt0LfMSloWYjDOt4TnOcL0AxF0/rDq2VkM=
5551
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
5652
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c h1:Lgl0gzECD8GnQ5QCWA8o6BtfL6mDH5rQgM4/fX3avOs=

serf/serf_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ func TestSerf_eventsUser_sizeLimit(t *testing.T) {
327327
if err == nil {
328328
t.Fatalf("expect error")
329329
}
330-
if !strings.HasPrefix(err.Error(), "user event exceeds limit of ") {
330+
if !strings.HasPrefix(err.Error(), "user event exceeds") {
331331
t.Fatalf("should get size limit error")
332332
}
333333
}

0 commit comments

Comments
 (0)