]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - cmd/safcm/config/files_test.go
tests: use subtests
[safcm/safcm.git] / cmd / safcm / config / files_test.go
index 398394c8f43d3fc0c28027500e4605db9f2625ee..ef31591fe8fdc31de081f4e3cfbe7a07fb6ef021 100644 (file)
@@ -188,16 +188,18 @@ This is FreeBSD host
        }
 
        for _, tc := range tests {
+               t.Run(tc.group, func(t *testing.T) {
                res, err := LoadFiles(tc.group)
 
                if !reflect.DeepEqual(tc.exp, res) {
-                       t.Errorf("%s: res: %s", tc.group,
+                       t.Errorf("res: %s",
                                cmp.Diff(tc.exp, res))
                }
                // Ugly but the simplest way to compare errors (including nil)
                if fmt.Sprintf("%s", err) != fmt.Sprintf("%s", tc.expErr) {
-                       t.Errorf("%s: err = %#v, want %#v",
-                               tc.group, err, tc.expErr)
+                       t.Errorf("err = %#v, want %#v",
+                               err, tc.expErr)
                }
+               })
        }
 }