diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-21 02:17:57 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-21 02:17:57 +0200 |
commit | 024cd373e052db4193343b1eeb0767df98d7ea1e (patch) | |
tree | d23d0e3294bc3d7df16daa53877815c4eab8eba0 | |
parent | 1bd04c1b1191aade27943fd1b3bdb04c9f2a94cc (diff) |
Rename some tests
-rw-r--r-- | formatter/formatter_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/formatter/formatter_test.go b/formatter/formatter_test.go index 132059a..fe3af4d 100644 --- a/formatter/formatter_test.go +++ b/formatter/formatter_test.go @@ -75,7 +75,7 @@ func TestPrintAst(t *testing.T) { } } -func TestPrintAttrs_nClasses(t *testing.T) { +func TestPrintAttrsNoClasses(t *testing.T) { redirectStdout() printAttrs([]parser.Attr{ { @@ -97,7 +97,7 @@ func TestPrintAttrs_nClasses(t *testing.T) { } } -func TestPrintAttrs_classes(t *testing.T) { +func TestPrintAttrsClasses(t *testing.T) { redirectStdout() printAttrs([]parser.Attr{ { @@ -120,7 +120,7 @@ func TestPrintAttrs_classes(t *testing.T) { } } -func TestPrintAttrs_mixedAttrs(t *testing.T) { +func TestPrintAttrsMixedAttrs(t *testing.T) { redirectStdout() printAttrs([]parser.Attr{ { |