Browse Source

Merge pull request #1950 from tendermint/1891-follow-up

remove print statements
pull/1953/head
Alexander Simmerl 6 years ago
committed by GitHub
parent
commit
4f7fac8076
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      abci/client/socket_client_test.go

+ 1
- 6
abci/client/socket_client_test.go 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()
}()


Loading…
Cancel
Save