1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-03-17 20:47:57 +02:00

Merge pull request #159 from Tom-Xie/master

Change POST method to PUT method in UpdateComment
This commit is contained in:
rbriski 2018-09-12 12:26:07 -07:00 committed by GitHub
commit 5161c44da2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -718,7 +718,7 @@ func (s *IssueService) UpdateComment(issueID string, comment *Comment) (*Comment
Body: comment.Body,
}
apiEndpoint := fmt.Sprintf("rest/api/2/issue/%s/comment/%s", issueID, comment.ID)
req, err := s.client.NewRequest("POST", apiEndpoint, reqBody)
req, err := s.client.NewRequest("PUT", apiEndpoint, reqBody)
if err != nil {
return nil, nil, err
}

View File

@ -157,7 +157,7 @@ func TestIssueService_UpdateComment(t *testing.T) {
setup()
defer teardown()
testMux.HandleFunc("/rest/api/2/issue/10000/comment/10001", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
testMethod(t, r, "PUT")
testRequestURL(t, r, "/rest/api/2/issue/10000/comment/10001")
w.WriteHeader(http.StatusCreated)