Fix tmsp/example import paths

This commit is contained in:
Jae Kwon
2016-02-14 15:03:55 -08:00
parent a6d37a49a2
commit d17d4fa106
4 changed files with 10 additions and 10 deletions

View File

@ -7,13 +7,13 @@ import (
"github.com/tendermint/tendermint/proxy"
"github.com/tendermint/tendermint/types"
"github.com/tendermint/tmsp/example/golang"
"github.com/tendermint/tmsp/example/counter"
tmsp "github.com/tendermint/tmsp/types"
)
func TestSerialReap(t *testing.T) {
app := example.NewCounterApplication(true)
app := counter.NewCounterApplication(true)
app.SetOption("serial", "on")
mtx := new(sync.Mutex)
appConnMem := proxy.NewLocalAppConn(mtx, app)