whisper: display err when failing to start server in tests

This commit is contained in:
Anton Evangelatov 2018-01-10 11:58:33 +01:00 committed by lash
parent 5e2a42960d
commit 1ae7e60d8d

View file

@ -235,7 +235,7 @@ func initialize(t *testing.T) {
// we need to wait until the first node actually starts
err = nodes[0].server.Start()
if err != nil {
t.Fatalf("failed to start the fisrt server.")
t.Fatal("failed to start the first server: ", err)
}
}