diff options
Diffstat (limited to 'integrations/api_notification_test.go')
-rw-r--r-- | integrations/api_notification_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/integrations/api_notification_test.go b/integrations/api_notification_test.go index 24d17173ac..182e9829cb 100644 --- a/integrations/api_notification_test.go +++ b/integrations/api_notification_test.go @@ -11,6 +11,7 @@ import ( "code.gitea.io/gitea/models" "code.gitea.io/gitea/models/unittest" + user_model "code.gitea.io/gitea/models/user" api "code.gitea.io/gitea/modules/structs" "github.com/stretchr/testify/assert" @@ -19,7 +20,7 @@ import ( func TestAPINotification(t *testing.T) { defer prepareTestEnv(t)() - user2 := unittest.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User) + user2 := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2}).(*user_model.User) repo1 := unittest.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) thread5 := unittest.AssertExistsAndLoadBean(t, &models.Notification{ID: 5}).(*models.Notification) assert.NoError(t, thread5.LoadAttributes()) |