remove print statements

Refs https://github.com/tendermint/tendermint/pull/1891#discussion_r201339918
This commit is contained in:
Anton Kaliaev 2018-07-11 10:04:32 +04:00
parent f9ae7730fe
commit 1034a35b3a
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 6 deletions

View File

@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/tendermint/tendermint/abci/client"
abcicli "github.com/tendermint/tendermint/abci/client"
"github.com/tendermint/tendermint/abci/server"
"github.com/tendermint/tendermint/abci/types"
cmn "github.com/tendermint/tendermint/libs/common"
@ -79,13 +79,8 @@ func TestHangingSyncCalls(t *testing.T) {
s.Stop()
// wait for the response from BeginBlock
fmt.Println("waiting for begin block")
reqres.Wait()
fmt.Println("waiting for flush")
flush.Wait()
fmt.Println("got all responses")
// res := reqres.Response.GetBeginBlock()
// require.NotNil(t, res)
resp <- c.Error()
}()