diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..127d581d Binary files /dev/null and b/.DS_Store differ diff --git a/crypto/commitment/hash_test.go b/crypto/commitment/hash_test.go index 92a7f74b..d7d3b22c 100644 --- a/crypto/commitment/hash_test.go +++ b/crypto/commitment/hash_test.go @@ -157,7 +157,7 @@ var _ = Describe("hash", func() { Expect(got.Equal(p)).Should(BeTrue()) }) - FIt("failed to new by empty point", func() { + It("failed to new by empty point", func() { c, err := NewCommitterByPoint(&pt.ECPoint{}) Expect(err).ShouldNot(BeNil()) Expect(c).Should(BeNil()) diff --git a/crypto/ecpointgrouplaw/point_test.go b/crypto/ecpointgrouplaw/point_test.go index 3ed3879f..e139c00e 100644 --- a/crypto/ecpointgrouplaw/point_test.go +++ b/crypto/ecpointgrouplaw/point_test.go @@ -456,7 +456,7 @@ var _ = Describe("Point", func() { Expect(gotP).Should(BeNil()) }) - FIt("ToPoint()", func() { + It("ToPoint()", func() { const UnSupportedEcPointMessage EcPointMessage_Curve = 100 msg := &EcPointMessage{ Curve: UnSupportedEcPointMessage,