Skip to content

Commit

Permalink
coreapi: few more error check fixes
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
  • Loading branch information
magik6k committed Jan 21, 2019
1 parent 083d85c commit 3f65679
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/coreapi/interface/tests/dag.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func (tp *provider) TestBatch(t *testing.T) {
}

_, err = api.Dag().Get(ctx, nds[0].Cid())
if err == nil || err.Error() != "merkledag: not found" {
if err == nil || !strings.Contains(err.Error(), "not found") {
t.Error(err)
}

Expand Down
2 changes: 1 addition & 1 deletion core/coreapi/interface/tests/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (tp *provider) TestInvalidPathRemainder(t *testing.T) {
}

_, err = api.ResolvePath(ctx, p1)
if err == nil || err.Error() != "no such link found" {
if err == nil || !strings.Contains(err.Error(), "no such link found") {
t.Fatalf("unexpected error: %s", err)
}
}
Expand Down
2 changes: 1 addition & 1 deletion core/coreapi/interface/tests/unixfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ func (tp *provider) TestAddHashOnly(t *testing.T) {
if err == nil {
t.Fatal("expected an error")
}
if err.Error() != "blockservice: key not found" {
if !strings.Contains(err.Error(),"blockservice: key not found") {
t.Errorf("unxepected error: %s", err.Error())
}
}
Expand Down

0 comments on commit 3f65679

Please sign in to comment.