fix ed25519 test(s)
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Steven Allen committed
Dec 7, 2018 at 15:44 UTC
6cec0b1611ee6d2d9708caee641c80d848493694
2 files changed
+3
-1
core/coreapi/key_test.go
+2
@@ -127,6 +127,8 @@ func TestGenerateSize(t *testing.T) {
127
128
func TestGenerateType(t *testing.T) {
129
ctx := context.Background()
130
+ t.Skip("disabled until libp2p/specs#111 is fixed")
131
+
132
_, api, err := makeAPI(ctx)
133
if err != nil {
134
t.Error(err)
namesys/publisher_test.go
+1
-1
@@ -108,5 +108,5 @@ func TestRSAPublisher(t *testing.T) {
108
}
109
110
func TestEd22519Publisher(t *testing.T) {
111
- testNamekeyPublisher(t, ci.Ed25519, ds.ErrNotFound, false)
111
+ testNamekeyPublisher(t, ci.Ed25519, nil, true)
112
}