Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bls/bls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func TestBLS_DeserializationG1(t *testing.T) {
err := pub.Deserialize(obj.Input.Pubkey)

if name == "deserialization_succeeds_infinity_with_true_b_flag.json" {
// we also fail if point is at inifinity
// we also fail if point is at infinity
return
}

Expand Down
2 changes: 1 addition & 1 deletion spec/spec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func TestPresetMainnet(t *testing.T) {
key = strings.Title(key)

if val, ok := specOut[key]; ok {
// avoid uint8 and int comparisions by using the fmt.Sprinot to format
// avoid uint8 and int comparisons by using the fmt.Sprinot to format
require.Equal(t, fmt.Sprintf("%d", val), fmt.Sprintf("%d", presetVal))
}
}
Expand Down