Remove error check for test machine

This commit is contained in:
Chris Roberts 2022-06-28 08:38:22 -07:00
parent 517b218337
commit 04036a99ce

View File

@ -79,8 +79,7 @@ func TestTargetIndexSet(t *testing.T) {
t.Error(err)
}
tt, err := TestMinimalTarget(t)
require.NoError(t, err)
tt := TestMinimalTarget(t)
tt.target.Name = "newName"
updated, err := ti.Set(tt)