Browse Source

ignore mustConnect for now. fix test_counter

pull/1780/head
Ethan Buchman 9 years ago
parent
commit
c3cc5375be
2 changed files with 1 additions and 3 deletions
  1. +1
    -0
      client/remote_client.go
  2. +0
    -3
      tests/test_counter.go

+ 1
- 0
client/remote_client.go View File

@ -54,6 +54,7 @@ func NewClient(addr string, mustConnect bool) (*remoteClient, error) {
} }
cli.QuitService = *NewQuitService(nil, "remoteClient", cli) cli.QuitService = *NewQuitService(nil, "remoteClient", cli)
_, err := cli.Start() // Just start it, it's confusing for callers to remember to start. _, err := cli.Start() // Just start it, it's confusing for callers to remember to start.
return cli, err
if mustConnect { if mustConnect {
return nil, err return nil, err
} else { } else {


+ 0
- 3
tests/test_counter.go View File

@ -100,9 +100,6 @@ func commit(client tmspcli.Client, hashExp []byte) {
func appendTx(client tmspcli.Client, txBytes []byte, codeExp types.CodeType, dataExp []byte) { func appendTx(client tmspcli.Client, txBytes []byte, codeExp types.CodeType, dataExp []byte) {
res := client.AppendTxSync(txBytes) res := client.AppendTxSync(txBytes)
code, data, log := res.Code, res.Data, res.Log code, data, log := res.Code, res.Data, res.Log
if res.IsErr() {
panic(Fmt("appending tx %X: %v\nlog: %v", txBytes, log))
}
if code != codeExp { if code != codeExp {
panic(Fmt("AppendTx response code was unexpected. Got %v expected %v. Log: %v", panic(Fmt("AppendTx response code was unexpected. Got %v expected %v. Log: %v",
code, codeExp, log)) code, codeExp, log))


Loading…
Cancel
Save