From 977bc9aca4b0890736fa142d5579e0f99d3b3057 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 3 Dec 2018 10:56:36 -0800 Subject: [PATCH] tests: skip key inlining test This has temporarily been disabled due to the changes/issues described in: https://github.com/libp2p/specs/issues/111 --- records_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/records_test.go b/records_test.go index 40dd8a2df..efe773920 100644 --- a/records_test.go +++ b/records_test.go @@ -15,6 +15,7 @@ import ( // Check that GetPublicKey() correctly extracts a public key func TestPubkeyExtract(t *testing.T) { + t.Skip("public key extraction for ed25519 keys has been disabled. See https://github.com/libp2p/specs/issues/111") ctx := context.Background() dht := setupDHT(ctx, t, false) defer dht.Close()