mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
test DELETE /api/v1/repos/{owner}/{repo}/issues/comments/{id}
Conflicts: tests/integration/api_comment_test.go
This commit is contained in:
parent
49a246f407
commit
236c5e172c
1 changed files with 2 additions and 1 deletions
|
@ -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})
|
||||
|
|
Loading…
Reference in a new issue