test DELETE /api/v1/repos/{owner}/{repo}/issues/comments/{id}

Conflicts:
	tests/integration/api_comment_test.go
This commit is contained in:
Loïc Dachary 2023-11-02 15:31:00 +01:00
parent 49a246f407
commit 236c5e172c
No known key found for this signature in database
GPG key ID: 992D23B392F9E4F2

View file

@ -419,9 +419,10 @@ func TestAPIEditCommentWithDate(t *testing.T) {
}
func TestAPIDeleteComment(t *testing.T) {
defer tests.AddFixtures("tests/integration/fixtures/TestAPIComment/")()
defer tests.PrepareTestEnv(t)()
comment := unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{ID: 8},
comment := unittest.AssertExistsAndLoadBean(t, &issues_model.Comment{ID: 1008},
unittest.Cond("type = ?", issues_model.CommentTypeComment))
issue := unittest.AssertExistsAndLoadBean(t, &issues_model.Issue{ID: comment.IssueID})
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: issue.RepoID})