Skip to content

Commit

Permalink
fix: broken method invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemTrofimushkin committed Sep 8, 2024
1 parent 15fa92e commit cc68c50
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deb/deb_meta_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ func TestMetaSignature(t *testing.T) {
Info: info,
Package: pkg,
}, &w))
require.NoError(t, sign.PGPReadMessage(w.Bytes(), "../internal/sign/testdata/pubkey.asc"))

_, err := sign.PGPReadMessage(w.Bytes(), "../internal/sign/testdata/pubkey.asc")
require.NoError(t, err)
}

func TestMetaSignatureError(t *testing.T) {
Expand Down

0 comments on commit cc68c50

Please sign in to comment.