mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix improper setup for integration tests (#2050)
This commit is contained in:
parent
b4e8a7c4d1
commit
4c0e567062
1 changed files with 2 additions and 4 deletions
|
@ -8,13 +8,11 @@ import (
|
|||
"net/http"
|
||||
"testing"
|
||||
|
||||
"code.gitea.io/gitea/models"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestAPIUserReposNotLogin(t *testing.T) {
|
||||
assert.NoError(t, models.LoadFixtures())
|
||||
prepareTestEnv(t)
|
||||
|
||||
req := NewRequest(t, "GET", "/api/v1/users/user2/repos")
|
||||
resp := MakeRequest(req)
|
||||
|
@ -22,7 +20,7 @@ func TestAPIUserReposNotLogin(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestAPISearchRepoNotLogin(t *testing.T) {
|
||||
assert.NoError(t, models.LoadFixtures())
|
||||
prepareTestEnv(t)
|
||||
|
||||
req := NewRequest(t, "GET", "/api/v1/repos/search?q=Test")
|
||||
resp := MakeRequest(req)
|
||||
|
|
Loading…
Reference in a new issue