diff options
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) |