diff options
author | Chris Dostert <chrisdostert@users.noreply.github.com> | 2017-04-10 09:55:18 -0700 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-04-10 18:55:18 +0200 |
commit | 3daede53835e8572b2957a016f068781db646567 (patch) | |
tree | 73ceb5e9f1eb99181db655de472bbd8e8540a687 /plumbing/transport/http/common_test.go | |
parent | 777dcd5647ffb263a8bbf3887232ee207138468a (diff) | |
download | go-git-3daede53835e8572b2957a016f068781db646567.tar.gz |
plumbing: transport, handle 403 in http transport
Diffstat (limited to 'plumbing/transport/http/common_test.go')
-rw-r--r-- | plumbing/transport/http/common_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plumbing/transport/http/common_test.go b/plumbing/transport/http/common_test.go index 1fd0dd5..d1f36d3 100644 --- a/plumbing/transport/http/common_test.go +++ b/plumbing/transport/http/common_test.go @@ -51,7 +51,11 @@ func (s *ClientSuite) TestNewErrOK(c *C) { } func (s *ClientSuite) TestNewErrUnauthorized(c *C) { - s.testNewHTTPError(c, http.StatusUnauthorized, "authorization required") + s.testNewHTTPError(c, http.StatusUnauthorized, "authentication required") +} + +func (s *ClientSuite) TestNewErrForbidden(c *C) { + s.testNewHTTPError(c, http.StatusForbidden, "authorization failed") } func (s *ClientSuite) TestNewErrNotFound(c *C) { |