From 9b5001c21912ec4a6309d48d3db38a8d52821cef Mon Sep 17 00:00:00 2001 From: DarthSim Date: Thu, 7 Apr 2022 14:14:44 +0600 Subject: [PATCH] Disable logs in processhing_handler_test --- processing_handler_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/processing_handler_test.go b/processing_handler_test.go index d3efeedb..af062739 100644 --- a/processing_handler_test.go +++ b/processing_handler_test.go @@ -40,10 +40,10 @@ func (s *ProcessingHandlerTestSuite) SetupSuite() { config.LocalFileSystemRoot = filepath.Join(wd, "/testdata") - logrus.SetOutput(ioutil.Discard) - initialize() + logrus.SetOutput(ioutil.Discard) + s.router = buildRouter() }