summaryrefslogtreecommitdiffstats
path: root/models/unit_tests.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/unit_tests.go')
-rw-r--r--models/unit_tests.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/models/unit_tests.go b/models/unit_tests.go
index e977f706f8..c4f9091a4b 100644
--- a/models/unit_tests.go
+++ b/models/unit_tests.go
@@ -67,9 +67,11 @@ func MainTest(m *testing.M, pathToGiteaRoot string) {
if err != nil {
fatalTestError("url.Parse: %v\n", err)
}
+ setting.Attachment.Storage.Type = setting.LocalStorageType
+ setting.Attachment.Storage.Path = filepath.Join(setting.AppDataPath, "attachments")
- setting.Attachment.Path = filepath.Join(setting.AppDataPath, "attachments")
- setting.LFS.ContentPath = filepath.Join(setting.AppDataPath, "lfs")
+ setting.LFS.Storage.Type = setting.LocalStorageType
+ setting.LFS.Storage.Path = filepath.Join(setting.AppDataPath, "lfs")
if err = storage.Init(); err != nil {
fatalTestError("storage.Init: %v\n", err)
}