From a0aa607bb396c86351ebd658bf7ce054b5ee38b5 Mon Sep 17 00:00:00 2001 From: Romashka Date: Fri, 20 Dec 2024 13:54:51 +0200 Subject: [PATCH 1/2] typo-Update bls_test.go --- bls/bls_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bls/bls_test.go b/bls/bls_test.go index 2892fad..cde0ad9 100755 --- a/bls/bls_test.go +++ b/bls/bls_test.go @@ -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 } From 6978b93d1f35f5fce2651a6776b31f9b92a5f233 Mon Sep 17 00:00:00 2001 From: Romashka Date: Fri, 20 Dec 2024 13:55:14 +0200 Subject: [PATCH 2/2] typo-Update spec_test.go --- spec/spec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_test.go b/spec/spec_test.go index e90672b..f7b3041 100644 --- a/spec/spec_test.go +++ b/spec/spec_test.go @@ -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)) } }