diff --git a/internal/syft/syft_test.go b/internal/syft/syft_test.go index 791346c2..316701e4 100644 --- a/internal/syft/syft_test.go +++ b/internal/syft/syft_test.go @@ -296,7 +296,8 @@ func TestApplyProxyRegistry(t *testing.T) { t.Run(v.input, func(t *testing.T) { s := syft.New("json", v.dataMap) img := &oci.RegistryImage{ImageID: v.input, Image: v.input} - s.ApplyProxyRegistry(img) + err := s.ApplyProxyRegistry(img) + assert.NoError(t, err) assert.Equal(t, v.expected, img.ImageID) }) }