]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - cmd/safcm/sync_test.go
tests: use subtests
[safcm/safcm.git] / cmd / safcm / sync_test.go
index dba1d7e054bd7e4b8e99238b7d0692c6aa2ef8b4..753f942fe06706d123967df5d95df9a43ee7c2e7 100644 (file)
@@ -166,15 +166,17 @@ func TestHostsToSync(t *testing.T) {
        }
 
        for _, tc := range tests {
+               t.Run(tc.name, func(t *testing.T) {
                res, err := hostsToSync(tc.names, allHosts, allGroups)
                if !reflect.DeepEqual(tc.exp, res) {
-                       t.Errorf("%s: res: %s", tc.name,
+                       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.name, err, tc.expErr)
+                       t.Errorf("err = %#v, want %#v",
+                               err, tc.expErr)
                }
+               })
        }
 }