all repos — gomponents @ 3a9a1fd26540ddd0299771a729740cdd88239dde

HTML components in pure Go

Rename and document fork

Alan Pearce
commit

3a9a1fd26540ddd0299771a729740cdd88239dde

parent

5eae1eef0f0a090ae569a23c0c52db356a109cfc

1 file changed, 13 insertions(+), 10 deletions(-)

changed files
M internal/import/import_test.gointernal/import/import_test.go
@@ -3,17 +3,20 @@
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) + }, + ) }