aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/transport/http/common_test.go
diff options
context:
space:
mode:
authorChris Dostert <chrisdostert@users.noreply.github.com>2017-04-10 09:55:18 -0700
committerMáximo Cuadros <mcuadros@gmail.com>2017-04-10 18:55:18 +0200
commit3daede53835e8572b2957a016f068781db646567 (patch)
tree73ceb5e9f1eb99181db655de472bbd8e8540a687 /plumbing/transport/http/common_test.go
parent777dcd5647ffb263a8bbf3887232ee207138468a (diff)
downloadgo-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.go6
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) {