Updated module path

This commit is contained in:
Eduard Urbach 2025-02-25 16:34:14 +01:00
parent 95976e39bf
commit fc1f84f19e
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
6 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@ package assert_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/assert" "git.urbach.dev/go/assert"
) )
func TestContains(t *testing.T) { func TestContains(t *testing.T) {

View File

@ -3,7 +3,7 @@ package assert_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/assert" "git.urbach.dev/go/assert"
) )
type T struct{ A int } type T struct{ A int }

View File

@ -3,7 +3,7 @@ package assert_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/assert" "git.urbach.dev/go/assert"
) )
func TestNil(t *testing.T) { func TestNil(t *testing.T) {

View File

@ -11,7 +11,7 @@ A minimal & stateless assert package for writing tests.
## Installation ## Installation
```shell ```shell
go get git.akyoto.dev/go/assert go get git.urbach.dev/go/assert
``` ```
## Usage ## Usage
@ -47,7 +47,7 @@ coverage: 100.0% of statements
## License ## License
Please see the [license documentation](https://akyoto.dev/license). Please see the [license documentation](https://urbach.dev/license).
## Copyright ## Copyright

View File

@ -3,7 +3,7 @@ package assert_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/assert" "git.urbach.dev/go/assert"
) )
func TestTrue(t *testing.T) { func TestTrue(t *testing.T) {

4
go.mod
View File

@ -1,3 +1,3 @@
module git.akyoto.dev/go/assert module git.urbach.dev/go/assert
go 1.21 go 1.24