@cryptotaxi247 / kubo / commits / 46dbdf4d6

coreapi: fix failing dag test

License: MIT Signed-off-by: Łukasz Magiera <magik6k@gmail.com> This commit was moved from ipfs/interface-go-ipfs-core@268b4fdbf1604d9296e09fe2cf1cf3328f498898 This commit was moved from ipfs/boxo@ea6b30e219991d9a4125537ac16e3e50df0650d8

Łukasz Magiera committed Feb 8, 2019 at 20:38 UTC 46dbdf4d64dee7706d3c22804179bdfb2080a8c5
1 file changed +1 -1
core/coreiface/tests/dag.go
+1 -1
@@ -128,7 +128,7 @@ func (tp *provider) TestDagPath(t *testing.T) {
128 t.Error(err)
129 }
130
131 - if nd.Cid().String() != snd.Cid().String() {
131 + if ndd.Cid().String() != snd.Cid().String() {
132 t.Errorf("got unexpected cid %s, expected %s", ndd.Cid().String(), snd.Cid().String())
133 }
134 }