From c0e153d103e48d5e2247fbba5fdf1e84b3192544 Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Sun, 15 Jan 2017 15:16:18 -0800 Subject: [PATCH] Move tmsp_test to tests/tmsp --- {app => tests/tmsp}/tmsp_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename {app => tests/tmsp}/tmsp_test.go (97%) diff --git a/app/tmsp_test.go b/tests/tmsp/tmsp_test.go similarity index 97% rename from app/tmsp_test.go rename to tests/tmsp/tmsp_test.go index 8f4b3a2596..941195ca07 100644 --- a/app/tmsp_test.go +++ b/tests/tmsp/tmsp_test.go @@ -1,8 +1,9 @@ -package app +package tmsp_test import ( "testing" + "github.com/tendermint/basecoin/app" "github.com/tendermint/basecoin/testutils" "github.com/tendermint/basecoin/types" cmn "github.com/tendermint/go-common" @@ -13,7 +14,7 @@ import ( func TestSendTx(t *testing.T) { eyesCli := eyescli.NewLocalClient() chainID := "test_chain_id" - bcApp := NewBasecoin(eyesCli) + bcApp := app.NewBasecoin(eyesCli) bcApp.SetOption("base/chainID", chainID) t.Log(bcApp.Info()) @@ -64,7 +65,7 @@ func TestSendTx(t *testing.T) { func TestSequence(t *testing.T) { eyesCli := eyescli.NewLocalClient() chainID := "test_chain_id" - bcApp := NewBasecoin(eyesCli) + bcApp := app.NewBasecoin(eyesCli) bcApp.SetOption("base/chainID", chainID) t.Log(bcApp.Info())