aboutsummaryrefslogtreecommitdiffstats
path: root/integrations/benchmarks_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrations/benchmarks_test.go')
-rw-r--r--integrations/benchmarks_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/integrations/benchmarks_test.go b/integrations/benchmarks_test.go
index 627825083c..517e7f005d 100644
--- a/integrations/benchmarks_test.go
+++ b/integrations/benchmarks_test.go
@@ -10,7 +10,7 @@ import (
"net/url"
"testing"
- "code.gitea.io/gitea/models"
+ repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/models/unittest"
api "code.gitea.io/gitea/modules/structs"
)
@@ -33,7 +33,7 @@ func BenchmarkRepoBranchCommit(b *testing.B) {
for _, repoID := range samples {
b.StopTimer()
- repo := unittest.AssertExistsAndLoadBean(b, &models.Repository{ID: repoID}).(*models.Repository)
+ repo := unittest.AssertExistsAndLoadBean(b, &repo_model.Repository{ID: repoID}).(*repo_model.Repository)
b.StartTimer()
b.Run(repo.Name, func(b *testing.B) {
session := loginUser(b, "user2")