From f1aba9764f6df5aa51dcc160c61dca7569aadb90 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 29 Jan 2018 11:32:34 -0800 Subject: [PATCH] fix error in test case License: MIT Signed-off-by: Steven Allen --- core/coreapi/key_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/coreapi/key_test.go b/core/coreapi/key_test.go index 6ec279e4b..92d4c8d4a 100644 --- a/core/coreapi/key_test.go +++ b/core/coreapi/key_test.go @@ -32,7 +32,7 @@ func TestListSelf(t *testing.T) { } if keys[0].Path().String() != "/ipns/"+testPeerID { - t.Errorf("expected the key to have path '/ipns/Qmfoo', got '%s'", keys[0].Path().String()) + t.Errorf("expected the key to have path '/ipns/%s', got '%s'", testPeerID, keys[0].Path().String()) } }