From 1fcb799ebc90e9ef541b1cfe26c4a0657f8d3b49 Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Thu, 29 Apr 2021 14:23:25 +0200 Subject: [PATCH] fix another mistake in a test --- routes/dashboard/dashboard_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/dashboard/dashboard_test.go b/routes/dashboard/dashboard_test.go index 0f592fa..512eac0 100644 --- a/routes/dashboard/dashboard_test.go +++ b/routes/dashboard/dashboard_test.go @@ -85,7 +85,7 @@ func TestMain(m *testing.M) { if err != nil { panic(m) } - err = database.InitDB(configuration.GlobalConfig) + err = database.InitDB(configuration.GlobalConfig, "true") if err != nil { panic(m) }