diff options
author | Lauris BH <lauris@nix.lv> | 2017-11-03 11:23:17 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-11-03 17:23:17 +0800 |
commit | 240609432b84a8caa5ec4c99a916277952ef02d5 (patch) | |
tree | 4ceb81292f531bcdca34389079b8a711643cd4c6 /integrations/repo_activity_test.go | |
parent | 8798cf4e3ba30bc0bdea073bf273ac27b71b78ce (diff) | |
download | gitea-240609432b84a8caa5ec4c99a916277952ef02d5.tar.gz gitea-240609432b84a8caa5ec4c99a916277952ef02d5.zip |
Issue content should not be updated when closing with comment (#2833)
Diffstat (limited to 'integrations/repo_activity_test.go')
-rw-r--r-- | integrations/repo_activity_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integrations/repo_activity_test.go b/integrations/repo_activity_test.go index 5a374ff6a9..49d07e7c42 100644 --- a/integrations/repo_activity_test.go +++ b/integrations/repo_activity_test.go @@ -31,9 +31,9 @@ func TestRepoActivity(t *testing.T) { testPullCreate(t, session, "user1", "repo1", "feat/much_better_readme") // Create issues (3 new issues) - testNewIssue(t, session, "user2", "repo1", "Issue 1") - testNewIssue(t, session, "user2", "repo1", "Issue 2") - testNewIssue(t, session, "user2", "repo1", "Issue 3") + testNewIssue(t, session, "user2", "repo1", "Issue 1", "Description 1") + testNewIssue(t, session, "user2", "repo1", "Issue 2", "Description 2") + testNewIssue(t, session, "user2", "repo1", "Issue 3", "Description 3") // Create releases (1 new release) createNewRelease(t, session, "/user2/repo1", "v1.0.0", "v1.0.0", false, false) |