Skip to content

Commit

Permalink
Merge pull request #2 from jmtx1020/feature/add-find-gw-by-name
Browse files Browse the repository at this point in the history
remove printing from get pinned object test
  • Loading branch information
jmtx1020 authored May 5, 2024
2 parents a49f8c1 + 6b01960 commit 2c76c98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions api/ipfs/pinning/pinning_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,10 @@ func TestGetPinnedObjectByRequestID(t *testing.T) {
t.Errorf("Unexpected error: %v", err)
}

object, err := pinningAPI.GetPinnedObjectByRequestID(results.Data[0].RequestID)
_, err = pinningAPI.GetPinnedObjectByRequestID(results.Data[0].RequestID)
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
fmt.Println(object)
}

func TestUpdatePinnedObject(t *testing.T) {
Expand Down

0 comments on commit 2c76c98

Please sign in to comment.