@cryptotaxi247 / kubo / commits / f1aba9764

fix error in test case

License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>

Steven Allen committed Jan 29, 2018 at 11:32 UTC f1aba9764f6df5aa51dcc160c61dca7569aadb90
1 file changed +1 -1
core/coreapi/key_test.go
+1 -1
@@ -32,7 +32,7 @@ func TestListSelf(t *testing.T) {
32 }
33
34 if keys[0].Path().String() != "/ipns/"+testPeerID {
35 - t.Errorf("expected the key to have path '/ipns/Qmfoo', got '%s'", keys[0].Path().String())
35 + t.Errorf("expected the key to have path '/ipns/%s', got '%s'", testPeerID, keys[0].Path().String())
36 }
37 }
38