summaryrefslogtreecommitdiffstats
path: root/api4/api_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/api_test.go')
-rw-r--r--api4/api_test.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/api4/api_test.go b/api4/api_test.go
index 8a8753a4f..fd804b70d 100644
--- a/api4/api_test.go
+++ b/api4/api_test.go
@@ -16,20 +16,15 @@ import (
func TestMain(m *testing.M) {
flag.Parse()
+ utils.TranslationsPreInit()
// In the case where a dev just wants to run a single test, it's faster to just use the default
// store.
if filter := flag.Lookup("test.run").Value.String(); filter != "" && filter != "." {
- utils.TranslationsPreInit()
- utils.LoadConfig("config.json")
l4g.Info("-test.run used, not creating temporary containers")
os.Exit(m.Run())
}
- utils.TranslationsPreInit()
- utils.LoadConfig("config.json")
- utils.InitTranslations(utils.Cfg.LocalizationSettings)
-
status := 0
container, settings, err := storetest.NewMySQLContainer()