From 1ad05a4a3d4cb33cb5a8ebd94b724e67e9a0ea0e Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 7 Feb 2019 17:45:09 -0800 Subject: [PATCH] namesys: fix ed25519 test for peer ID inlining License: MIT Signed-off-by: Steven Allen --- namesys/publisher_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/namesys/publisher_test.go b/namesys/publisher_test.go index 7a8cf7ede..0e9ef1d4e 100644 --- a/namesys/publisher_test.go +++ b/namesys/publisher_test.go @@ -108,5 +108,5 @@ func TestRSAPublisher(t *testing.T) { } func TestEd22519Publisher(t *testing.T) { - testNamekeyPublisher(t, ci.Ed25519, nil, true) + testNamekeyPublisher(t, ci.Ed25519, ds.ErrNotFound, false) }