diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2019-07-29 17:09:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-29 17:09:20 +0200 |
commit | b294aa1351a9c1e9388d7901033596514cf5eaa9 (patch) | |
tree | c56f72099d5fcf8010d74e5e8149508c47cc2001 /plumbing/transport/http/common_test.go | |
parent | 1edb992dbc419a0767b1cf3a524b0d35529799f5 (diff) | |
parent | 361f21d9cc514d79924325c53d37bd097be3904d (diff) | |
download | go-git-b294aa1351a9c1e9388d7901033596514cf5eaa9.tar.gz |
Merge pull request #1197 from hypnoce/master
Make http.AuthMethod setAuth public. Fixes #1196
Diffstat (limited to 'plumbing/transport/http/common_test.go')
-rw-r--r-- | plumbing/transport/http/common_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/transport/http/common_test.go b/plumbing/transport/http/common_test.go index 8b300e8..d9e0636 100644 --- a/plumbing/transport/http/common_test.go +++ b/plumbing/transport/http/common_test.go @@ -64,7 +64,7 @@ func (s *ClientSuite) TestNewTokenAuth(c *C) { // Check header is set correctly req, err := http.NewRequest("GET", "https://github.com/git-fixtures/basic", nil) c.Assert(err, Equals, nil) - a.setAuth(req) + a.SetAuth(req) c.Assert(req.Header.Get("Authorization"), Equals, "Bearer OAUTH-TOKEN-TEXT") } |