diff --git a/Gopkg.lock b/Gopkg.lock index daee3c2eca7ff00444c7d5bb075f6436509cc7f7..a63ecf89b50d50bcbb3b13b79fdcfcb37988497f 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -498,6 +498,7 @@ "github.com/go-errors/errors", "github.com/gorilla/mux", "github.com/icrowley/fake", + "github.com/mattn/go-isatty", "github.com/phayes/freeport", "github.com/pkg/errors", "github.com/shurcooL/githubv4", diff --git a/vendor/github.com/xanzy/go-gitlab/award_emojis.go b/vendor/github.com/xanzy/go-gitlab/award_emojis.go index 89452c8af864e639835be56fa719bd5c1821233a..4c054f966160998eb8ae51076191a52bda35fd58 100644 --- a/vendor/github.com/xanzy/go-gitlab/award_emojis.go +++ b/vendor/github.com/xanzy/go-gitlab/award_emojis.go @@ -405,7 +405,7 @@ func (s *AwardEmojiService) createAwardEmojiOnNote(pid interface{}, resource str noteID, ) - req, err := s.client.NewRequest("POST", u, nil, options) + req, err := s.client.NewRequest("POST", u, opt, options) if err != nil { return nil, nil, err } diff --git a/vendor/github.com/xanzy/go-gitlab/gitlab.go b/vendor/github.com/xanzy/go-gitlab/gitlab.go index df044141e046abb4a4ff19381d1ab88801cdbc7e..b8c951c5dcd12244bd93d243a06103ad08ae9cc1 100644 --- a/vendor/github.com/xanzy/go-gitlab/gitlab.go +++ b/vendor/github.com/xanzy/go-gitlab/gitlab.go @@ -14,6 +14,7 @@ // limitations under the License. // +// Package gitlab implements a GitLab API client. package gitlab import (