aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/api_repo_git_notes_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrations/api_repo_git_notes_test.go')
-rw-r--r--integrations/api_repo_git_notes_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/integrations/api_repo_git_notes_test.go b/integrations/api_repo_git_notes_test.go
index 6eae5e970d..02235f9d91 100644
--- a/integrations/api_repo_git_notes_test.go
+++ b/integrations/api_repo_git_notes_test.go
@@ -10,13 +10,14 @@ import (
"testing"
"code.gitea.io/gitea/models"
+ "code.gitea.io/gitea/models/db"
api "code.gitea.io/gitea/modules/structs"
"github.com/stretchr/testify/assert"
)
func TestAPIReposGitNotes(t *testing.T) {
onGiteaRun(t, func(*testing.T, *url.URL) {
- user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
+ user := db.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
// Login as User2.
session := loginUser(t, user.Name)
token := getTokenForLoggedInUser(t, session)