Skip to content

Commit

Permalink
fix: remove unwanted testing error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanraj7316 committed May 30, 2022
1 parent 02071b0 commit 1212295
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions httpclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"bytes"
"context"
"crypto/tls"
"errors"
"io"
"io/ioutil"
"net/http"
Expand Down Expand Up @@ -97,7 +96,7 @@ func (h *HttpClient) Request(ctx context.Context, method, url string, headers ma

go h.successLogging(ctx, method, url, res.Status, res.StatusCode, reqByte, resByte, start)

return res, errors.New("error in testing")
return res, nil
}

// TODO: SOAP REQUEST

0 comments on commit 1212295

Please sign in to comment.