ethlog: don't buffer output in TestConcurrentAddSystem

This commit is contained in:
Felix Lange 2014-10-14 19:07:19 +02:00
parent ec132749aa
commit 793baf060a

View File

@ -162,7 +162,7 @@ func TestConcurrentAddSystem(t *testing.T) {
stopTime := time.Now().Add(100 * time.Millisecond) stopTime := time.Now().Add(100 * time.Millisecond)
for time.Now().Before(stopTime) { for time.Now().Before(stopTime) {
time.Sleep(time.Duration(rand.Intn(20)) * time.Millisecond) time.Sleep(time.Duration(rand.Intn(20)) * time.Millisecond)
AddLogSystem(&TestLogSystem{level: InfoLevel}) AddLogSystem(NewStdLogSystem(ioutil.Discard, 0, InfoLevel))
} }
close(stop) close(stop)
} }