about summary refs log tree commit diff stats
path: root/internal/import/import_test.go
diff options
context:
space:
mode:
authorAlan Pearce2025-03-19 12:20:24 +0100
committerAlan Pearce2025-03-19 12:20:24 +0100
commit3a9a1fd26540ddd0299771a729740cdd88239dde (patch)
tree6a65ad391fa2ff3d52132643502739e9645f56a7 /internal/import/import_test.go
parent5eae1eef0f0a090ae569a23c0c52db356a109cfc (diff)
downloadgomponents-3a9a1fd26540ddd0299771a729740cdd88239dde.tar.lz
gomponents-3a9a1fd26540ddd0299771a729740cdd88239dde.tar.zst
gomponents-3a9a1fd26540ddd0299771a729740cdd88239dde.zip
Rename and document fork v1.2.0
Diffstat (limited to 'internal/import/import_test.go')
-rw-r--r--internal/import/import_test.go23
1 files changed, 13 insertions, 10 deletions
diff --git a/internal/import/import_test.go b/internal/import/import_test.go
index e505e46..d81b967 100644
--- a/internal/import/import_test.go
+++ b/internal/import/import_test.go
@@ -3,17 +3,20 @@ package import_test
 import (
 	"testing"
 
-	. "maragu.dev/gomponents"
-	. "maragu.dev/gomponents/components"
-	. "maragu.dev/gomponents/html"
-	. "maragu.dev/gomponents/http"
+	. "go.alanpearce.eu/gomponents"
+	. "go.alanpearce.eu/gomponents/components"
+	. "go.alanpearce.eu/gomponents/html"
+	. "go.alanpearce.eu/gomponents/http"
 )
 
 func TestImports(t *testing.T) {
-	t.Run("this is just a test that does nothing, but I need the dot imports above", func(t *testing.T) {
-		_ = El("div")
-		_ = A()
-		_ = HTML5(HTML5Props{})
-		_ = Adapt(nil)
-	})
+	t.Run(
+		"this is just a test that does nothing, but I need the dot imports above",
+		func(t *testing.T) {
+			_ = El("div")
+			_ = A()
+			_ = HTML5(HTML5Props{})
+			_ = Adapt(nil)
+		},
+	)
 }