Skip to content

Commit

Permalink
chore: pr feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Keith Zantow <[email protected]>
  • Loading branch information
kzantow committed Nov 4, 2024
1 parent e8e092b commit c090c1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion syft/pkg/cataloger/binary/classifier_cataloger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,8 @@ func Test_Cataloger_ResilientToErrors(t *testing.T) {
c := NewClassifierCataloger(DefaultClassifierCatalogerConfig())

resolver := &panicyResolver{}
_, _, _ = c.Catalog(context.Background(), resolver)
_, _, err := c.Catalog(context.Background(), resolver)
assert.Nil(t, err) // non-coordinate-based FindBy* errors are now logged and not returned
assert.True(t, resolver.searchCalled)
}

Expand Down

0 comments on commit c090c1b

Please sign in to comment.