diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-06-01 01:06:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 19:06:17 +0200 |
commit | 5d23c885eda54917078182b6f01441b15a517c1e (patch) | |
tree | d543071ada7879ee57491ef541b90d8cef1f7e11 /tests/integration | |
parent | 48bfea6705f43c84dcb800f7bc5ab5922aebd89c (diff) | |
download | gitea-5d23c885eda54917078182b6f01441b15a517c1e.tar.gz gitea-5d23c885eda54917078182b6f01441b15a517c1e.zip |
Fix users cannot visit issue attachment bug (#25019)
Caused by #24362
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/attachment_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/integration/attachment_test.go b/tests/integration/attachment_test.go index a92814ecee..ff62726487 100644 --- a/tests/integration/attachment_test.go +++ b/tests/integration/attachment_test.go @@ -89,6 +89,9 @@ func TestCreateIssueAttachment(t *testing.T) { // Validate that attachment is available req = NewRequest(t, "GET", "/attachments/"+uuid) session.MakeRequest(t, req, http.StatusOK) + + // anonymous visit should be allowed because user2/repo1 is a public repository + MakeRequest(t, req, http.StatusOK) } func TestGetAttachment(t *testing.T) { |