aboutsummaryrefslogtreecommitdiff
path: root/jsonmatch
diff options
context:
space:
mode:
Diffstat (limited to 'jsonmatch')
-rw-r--r--jsonmatch/diff_test.go6
-rw-r--r--jsonmatch/interface.go4
-rw-r--r--jsonmatch/machinery.go2
3 files changed, 6 insertions, 6 deletions
diff --git a/jsonmatch/diff_test.go b/jsonmatch/diff_test.go
index 74a976f..1a49010 100644
--- a/jsonmatch/diff_test.go
+++ b/jsonmatch/diff_test.go
@@ -10,9 +10,9 @@ import (
"strings"
"testing"
- . "github.com/majewsky/gg/internal/test"
- "github.com/majewsky/gg/jsonmatch"
- . "github.com/majewsky/gg/option"
+ . "go.xyrillian.de/gg/internal/test"
+ "go.xyrillian.de/gg/jsonmatch"
+ . "go.xyrillian.de/gg/option"
)
// assert that types implement the expected interfaces
diff --git a/jsonmatch/interface.go b/jsonmatch/interface.go
index 047a4b7..69319cb 100644
--- a/jsonmatch/interface.go
+++ b/jsonmatch/interface.go
@@ -12,7 +12,7 @@
// "net/http"
// "net/http/httptest"
//
-// "github.com/majewsky/gg/jsonmatch"
+// "go.xyrillian.de/gg/jsonmatch"
// )
//
// func TestJSONMatchOfResponseBody(t*testing.T) {
@@ -128,7 +128,7 @@
// },
// }.DiffAgainst(resp2.Body.Bytes())
// // ...
-package jsonmatch
+package jsonmatch // import "go.xyrillian.de/gg/jsonmatch"
import (
"encoding/json"
diff --git a/jsonmatch/machinery.go b/jsonmatch/machinery.go
index 32930b6..ae0c254 100644
--- a/jsonmatch/machinery.go
+++ b/jsonmatch/machinery.go
@@ -11,7 +11,7 @@ import (
"strconv"
"strings"
- . "github.com/majewsky/gg/option"
+ . "go.xyrillian.de/gg/option"
)
func marshalExpectedForDiff(value any) string {