From 589e6c3a4b975f1df6d271e169cd6f0887a44bb1 Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Sun, 15 Sep 2024 10:46:33 +0200 Subject: [PATCH] update domain --- doc/httpmockexample_test.go | 4 ++-- go.mod | 2 +- 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 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/httpmockexample_test.go b/doc/httpmockexample_test.go index 502c6be..5f20fc3 100644 --- a/doc/httpmockexample_test.go +++ b/doc/httpmockexample_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" - httpmock "code.ewintr.nl/go-kit/doc" - "code.ewintr.nl/go-kit/test" + httpmock "go-mod.ewintr.nl/go-kit/doc" + "go-mod.ewintr.nl/go-kit/test" ) func TestFooClientDoStuff(t *testing.T) { diff --git a/go.mod b/go.mod index a9c3e79..e02eb45 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module code.ewintr.nl/go-kit +module go-mod.ewintr.nl/go-kit go 1.21.5 diff --git a/log/gokitio_test.go b/log/gokitio_test.go index 2a54278..9b487c0 100644 --- a/log/gokitio_test.go +++ b/log/gokitio_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - "code.ewintr.nl/go-kit/log" - "code.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/go-kit/log" + "go-mod.ewintr.nl/go-kit/test" ) func TestGoKitIOLogger(t *testing.T) { diff --git a/log/testlogger_test.go b/log/testlogger_test.go index d167d47..dfe86a0 100644 --- a/log/testlogger_test.go +++ b/log/testlogger_test.go @@ -4,8 +4,8 @@ import ( "errors" "testing" - "code.ewintr.nl/go-kit/log" - "code.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/go-kit/log" + "go-mod.ewintr.nl/go-kit/test" ) func TestTestLogger(t *testing.T) { diff --git a/slugify/slugify_test.go b/slugify/slugify_test.go index addf0fd..e942888 100644 --- a/slugify/slugify_test.go +++ b/slugify/slugify_test.go @@ -3,7 +3,7 @@ package slugify_test import ( "testing" - "code.ewintr.nl/go-kit/slugify" + "go-mod.ewintr.nl/go-kit/slugify" ) var tests = []struct{ in, out string }{ diff --git a/test/httpmock_test.go b/test/httpmock_test.go index a0842f7..ad6134f 100644 --- a/test/httpmock_test.go +++ b/test/httpmock_test.go @@ -10,7 +10,7 @@ import ( "net/url" "testing" - "code.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/go-kit/test" ) func TestHTTPMock(t *testing.T) { diff --git a/test/test_test.go b/test/test_test.go index afb6f55..3f34286 100644 --- a/test/test_test.go +++ b/test/test_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - "code.ewintr.nl/go-kit/test" + "go-mod.ewintr.nl/go-kit/test" ) func TestTest(t *testing.T) {