From f39fa72bad98d17ee9ba61cb0498c14f6463efcf Mon Sep 17 00:00:00 2001 From: Tit Petric Date: Fri, 15 Mar 2019 00:31:43 +0100 Subject: [PATCH] fix(messaging): systemService Init change --- messaging/internal/service/main_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/messaging/internal/service/main_test.go b/messaging/internal/service/main_test.go index 8da6c5183..eb2cf71be 100644 --- a/messaging/internal/service/main_test.go +++ b/messaging/internal/service/main_test.go @@ -12,7 +12,7 @@ import ( "github.com/titpetric/factory" systemMigrate "github.com/crusttech/crust/system/db" - systemService "github.com/crusttech/crust/system/service" + _ "github.com/crusttech/crust/system/service" ) type mockDB struct{} @@ -56,8 +56,6 @@ func TestMain(m *testing.M) { } } - systemService.Init() - os.Exit(m.Run()) }