1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-11-29 22:28:34 +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
2 changed files with 2 additions and 2 deletions

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)