about summary refs log tree commit diff stats
path: root/svg/attributes_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'svg/attributes_test.go')
-rw-r--r--svg/attributes_test.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/svg/attributes_test.go b/svg/attributes_test.go
index c41fb45..7e26548 100644
--- a/svg/attributes_test.go
+++ b/svg/attributes_test.go
@@ -11,12 +11,13 @@ import (
 
 func TestSimpleAttributes(t *testing.T) {
 	cases := map[string]func(string) g.Node{
-		"clip-rule": ClipRule,
-		"d":         D,
-		"fill":      Fill,
-		"fill-rule": FillRule,
-		"stroke":    Stroke,
-		"viewBox":   ViewBox,
+		"clip-rule":    ClipRule,
+		"d":            D,
+		"fill":         Fill,
+		"fill-rule":    FillRule,
+		"stroke":       Stroke,
+		"stroke-width": StrokeWidth,
+		"viewBox":      ViewBox,
 	}
 
 	for name, fn := range cases {