diff options
author | Markus Wüstenberg | 2021-10-06 20:49:43 +0200 |
---|---|---|
committer | GitHub | 2021-10-06 20:49:43 +0200 |
commit | 4858e5d47d5bed0221a19ab46af306b8eab5935d (patch) | |
tree | dda74c86faa85e4bd82edff07ecf8a05cc7055b3 /html/attributes_test.go | |
parent | 33524d683661bf73fd224a76ec62fb88b2b3c767 (diff) | |
download | gomponents-4858e5d47d5bed0221a19ab46af306b8eab5935d.tar.lz gomponents-4858e5d47d5bed0221a19ab46af306b8eab5935d.tar.zst gomponents-4858e5d47d5bed0221a19ab46af306b8eab5935d.zip |
Mark the assert test helpers as such (#90)
Using `t.Helper()`. Also move the assert package to be internal.
Diffstat (limited to 'html/attributes_test.go')
-rw-r--r-- | html/attributes_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/attributes_test.go b/html/attributes_test.go index 76e3390..665dc94 100644 --- a/html/attributes_test.go +++ b/html/attributes_test.go @@ -5,8 +5,8 @@ import ( "testing" g "github.com/maragudk/gomponents" - "github.com/maragudk/gomponents/assert" . "github.com/maragudk/gomponents/html" + "github.com/maragudk/gomponents/internal/assert" ) func TestBooleanAttributes(t *testing.T) { |