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 /services/wiki/wiki_test.go | |
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 'services/wiki/wiki_test.go')
-rw-r--r-- | services/wiki/wiki_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/wiki/wiki_test.go b/services/wiki/wiki_test.go index 0e1d460a20..19f298f2d6 100644 --- a/services/wiki/wiki_test.go +++ b/services/wiki/wiki_test.go @@ -162,6 +162,8 @@ func TestRepository_AddWikiPage(t *testing.T) { } func TestRepository_EditWikiPage(t *testing.T) { + assert.NoError(t, models.PrepareTestDatabase()) + const newWikiContent = "This is the new content" const commitMsg = "Commit message" repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) |