*: github.com/monogon-dev -> github.com/monogon

Change-Id: I0b8bfde3d99d5308a73d51f869cb1440e285939f
Reviewed-on: https://review.monogon.dev/c/monogon/+/4291
Tested-by: Jenkins CI
Reviewed-by: Tim Windelschmidt <tim@monogon.tech>
diff --git a/metropolis/node/labels_test.go b/metropolis/node/labels_test.go
index 08c27bb..530bbfa 100644
--- a/metropolis/node/labels_test.go
+++ b/metropolis/node/labels_test.go
@@ -30,7 +30,7 @@
 		{"../annotation", errDomainNameInvalid},
 		{"tcp:80.example.com/annotation", errDomainNameInvalid},
 		{"80/annotation", errDomainNameEndsInNumber},
-		{"github.com/monogon-dev/monogon/annotation", ErrLabelInvalidPrefix},
+		{"github.com/monogon/monogon/annotation", ErrLabelInvalidPrefix},
 	} {
 		if got := ValidateLabelKey(te.in); !errors.Is(got, te.want) {
 			t.Errorf("%d (%q): wanted %v, got %v", i, te.in, te.want, got)
@@ -61,7 +61,7 @@
 		{"./annotation", ErrLabelInvalidFirstCharacter},
 		{"../annotation", ErrLabelInvalidFirstCharacter},
 		{"tcp:80.example.com/annotation", ErrLabelInvalidCharacter},
-		{"github.com/monogon-dev/monogon/annotation", ErrLabelInvalidCharacter},
+		{"github.com/monogon/monogon/annotation", ErrLabelInvalidCharacter},
 	} {
 		// Test our implementation against test cases.
 		if got := ValidateLabelValue(te.in); !errors.Is(got, te.want) {