diff --git a/Contains_test.go b/Contains_test.go index a514b09..dc83435 100644 --- a/Contains_test.go +++ b/Contains_test.go @@ -3,7 +3,7 @@ package assert_test import ( "testing" - "git.akyoto.dev/go/assert" + "git.urbach.dev/go/assert" ) func TestContains(t *testing.T) { diff --git a/Equal_test.go b/Equal_test.go index 6a0e345..18676b0 100644 --- a/Equal_test.go +++ b/Equal_test.go @@ -3,7 +3,7 @@ package assert_test import ( "testing" - "git.akyoto.dev/go/assert" + "git.urbach.dev/go/assert" ) type T struct{ A int } diff --git a/Nil_test.go b/Nil_test.go index 39f5c3c..4699de7 100644 --- a/Nil_test.go +++ b/Nil_test.go @@ -3,7 +3,7 @@ package assert_test import ( "testing" - "git.akyoto.dev/go/assert" + "git.urbach.dev/go/assert" ) func TestNil(t *testing.T) { diff --git a/README.md b/README.md index 7387945..56158ea 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A minimal & stateless assert package for writing tests. ## Installation ```shell -go get git.akyoto.dev/go/assert +go get git.urbach.dev/go/assert ``` ## Usage @@ -47,7 +47,7 @@ coverage: 100.0% of statements ## License -Please see the [license documentation](https://akyoto.dev/license). +Please see the [license documentation](https://urbach.dev/license). ## Copyright diff --git a/True_test.go b/True_test.go index 2862862..09ef569 100644 --- a/True_test.go +++ b/True_test.go @@ -3,7 +3,7 @@ package assert_test import ( "testing" - "git.akyoto.dev/go/assert" + "git.urbach.dev/go/assert" ) func TestTrue(t *testing.T) { diff --git a/go.mod b/go.mod index b98499d..2980283 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.akyoto.dev/go/assert +module git.urbach.dev/go/assert -go 1.21 +go 1.24