Przeglądaj źródła

Disable logs in processhing_handler_test

DarthSim 3 lat temu
rodzic
commit
9b5001c219
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      processing_handler_test.go

+ 2 - 2
processing_handler_test.go

@@ -40,10 +40,10 @@ func (s *ProcessingHandlerTestSuite) SetupSuite() {
 
 
 	config.LocalFileSystemRoot = filepath.Join(wd, "/testdata")
 	config.LocalFileSystemRoot = filepath.Join(wd, "/testdata")
 
 
-	logrus.SetOutput(ioutil.Discard)
-
 	initialize()
 	initialize()
 
 
+	logrus.SetOutput(ioutil.Discard)
+
 	s.router = buildRouter()
 	s.router = buildRouter()
 }
 }