Skip to content

Commit

Permalink
Merge pull request #5935 from ipfs/tests/coreapi-fixes
Browse files Browse the repository at this point in the history
coreapi: few more error check fixes
  • Loading branch information
Stebalien authored Jan 21, 2019
2 parents 083d85c + 480a3a3 commit 532c9bd
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 532c9bd

Please sign in to comment.