diff options
author | KN4CK3R <KN4CK3R@users.noreply.github.com> | 2021-05-12 06:13:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 00:13:42 -0400 |
commit | 3d7d750a999b72d422000154a0b1f2801614521e (patch) | |
tree | 59aa048dd42f9ffaea431093cd1e49d1c8d23cd7 /modules/convert | |
parent | 96b1315e6eaf04954383348cbbb4d1ef7810651b (diff) | |
download | gitea-3d7d750a999b72d422000154a0b1f2801614521e.tar.gz gitea-3d7d750a999b72d422000154a0b1f2801614521e.zip |
Fix individual tests (addition to #15802) (#15818)
* Decouple TestAction_GetRepoLink and TestSizedAvatarLink.
* Load database for TestCheckGPGUserEmail.
* Load database for TestMakeIDsFromAPIAssigneesToAdd.
* Load database for TestGetUserIDsByNames and TestGetMaileableUsersByIDs.
* Load database for TestUser_ToUser.
* Load database for TestRepository_EditWikiPage.
* Include AppSubURL in test.
* Prevent panic with empty slice.
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'modules/convert')
-rw-r--r-- | modules/convert/user_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/convert/user_test.go b/modules/convert/user_test.go index 3939653441..7837910ffe 100644 --- a/modules/convert/user_test.go +++ b/modules/convert/user_test.go @@ -8,10 +8,12 @@ import ( "testing" "code.gitea.io/gitea/models" + "github.com/stretchr/testify/assert" ) func TestUser_ToUser(t *testing.T) { + assert.NoError(t, models.PrepareTestDatabase()) user1 := models.AssertExistsAndLoadBean(t, &models.User{ID: 1, IsAdmin: true}).(*models.User) |