From 8652e569494545c7be073befaf851668ce5cdcd3 Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Sun, 19 Sep 2021 11:28:27 +0200 Subject: [PATCH] moved module --- doc/httpmockexample_test.go | 4 ++-- go.mod | 3 +-- go.sum | 3 --- log/gokitio_test.go | 4 ++-- log/testlogger_test.go | 4 ++-- slugify/slugify_test.go | 2 +- test/httpmock_test.go | 2 +- test/test_test.go | 2 +- 8 files changed, 10 insertions(+), 14 deletions(-) diff --git a/doc/httpmockexample_test.go b/doc/httpmockexample_test.go index c5084c3..da0c72f 100644 --- a/doc/httpmockexample_test.go +++ b/doc/httpmockexample_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" - httpmock "git.ewintr.nl/go-kit/doc" - "git.ewintr.nl/go-kit/test" + httpmock "ewintr.nl/go-kit/doc" + "ewintr.nl/go-kit/test" ) func TestFooClientDoStuff(t *testing.T) { diff --git a/go.mod b/go.mod index f66140f..f59f143 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,8 @@ -module git.ewintr.nl/go-kit +module ewintr.nl/go-kit go 1.16 require ( github.com/go-kit/kit v0.10.0 - github.com/sirupsen/logrus v1.8.1 golang.org/x/text v0.3.6 ) diff --git a/go.sum b/go.sum index a99f4c4..c345d02 100644 --- a/go.sum +++ b/go.sum @@ -211,8 +211,6 @@ github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= @@ -296,7 +294,6 @@ golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f h1:68K/z8GLUxV76xGSqwTWw2gyk/jwn79LUL43rES2g8o= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= diff --git a/log/gokitio_test.go b/log/gokitio_test.go index 96b27aa..5eab027 100644 --- a/log/gokitio_test.go +++ b/log/gokitio_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - "git.ewintr.nl/go-kit/log" - "git.ewintr.nl/go-kit/test" + "ewintr.nl/go-kit/log" + "ewintr.nl/go-kit/test" ) func TestGoKitIOLogger(t *testing.T) { diff --git a/log/testlogger_test.go b/log/testlogger_test.go index 6c755bc..c3f4107 100644 --- a/log/testlogger_test.go +++ b/log/testlogger_test.go @@ -4,8 +4,8 @@ import ( "errors" "testing" - "git.ewintr.nl/go-kit/log" - "git.ewintr.nl/go-kit/test" + "ewintr.nl/go-kit/log" + "ewintr.nl/go-kit/test" ) func TestTestLogger(t *testing.T) { diff --git a/slugify/slugify_test.go b/slugify/slugify_test.go index d9bd85f..d72f79d 100644 --- a/slugify/slugify_test.go +++ b/slugify/slugify_test.go @@ -3,7 +3,7 @@ package slugify_test import ( "testing" - "git.ewintr.nl/go-kit/slugify" + "ewintr.nl/go-kit/slugify" ) var tests = []struct{ in, out string }{ diff --git a/test/httpmock_test.go b/test/httpmock_test.go index 82da183..982300c 100644 --- a/test/httpmock_test.go +++ b/test/httpmock_test.go @@ -10,7 +10,7 @@ import ( "net/url" "testing" - "git.ewintr.nl/go-kit/test" + "ewintr.nl/go-kit/test" ) func TestHTTPMock(t *testing.T) { diff --git a/test/test_test.go b/test/test_test.go index 63d2b2e..c688e17 100644 --- a/test/test_test.go +++ b/test/test_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - "git.ewintr.nl/go-kit/test" + "ewintr.nl/go-kit/test" ) func TestTest(t *testing.T) {