Skip to content

Commit

Permalink
add continue in TestHKDF
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Sep 23, 2024
1 parent b42cd8d commit 1c95ba9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hkdf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ func TestHKDF(t *testing.T) {
hkdf, err := newHKDF(tt.hash, tt.master, tt.salt, tt.info)
if err != nil {
t.Errorf("test %d: error creating HKDF: %v.", i, err)
continue
}
out := make([]byte, len(tt.out))

Expand Down

0 comments on commit 1c95ba9

Please sign in to comment.