test: remove output to stdout
This commit is contained in:
parent
846fe5d630
commit
d0cb508382
|
@ -1564,7 +1564,7 @@ func TestAgent_Monitor(t *testing.T) {
|
|||
a := &TestAgent{
|
||||
Name: t.Name(),
|
||||
LogWriter: logWriter,
|
||||
LogOutput: io.MultiWriter(os.Stdout, logWriter),
|
||||
LogOutput: io.MultiWriter(os.Stderr, logWriter),
|
||||
}
|
||||
a.Start()
|
||||
defer a.Shutdown()
|
||||
|
|
|
@ -234,7 +234,6 @@ func TestCheckHTTPCritical(t *testing.T) {
|
|||
// var server *httptest.Server
|
||||
|
||||
server := mockHTTPServer(150)
|
||||
fmt.Println(server.URL)
|
||||
expectHTTPStatus(t, server.URL, api.HealthCritical)
|
||||
server.Close()
|
||||
|
||||
|
|
Loading…
Reference in New Issue