From a70c95b79e4cb7ed4f3eaf7407d9f30cfb38f205 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Fri, 21 Apr 2017 18:18:22 -0400 Subject: [PATCH] tmlibs/common/test -> tmlibs/test --- types/tx_test.go | 4 ++-- types/vote_set_test.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/types/tx_test.go b/types/tx_test.go index 866357e33..3ed59e3cb 100644 --- a/types/tx_test.go +++ b/types/tx_test.go @@ -5,9 +5,9 @@ import ( "testing" "github.com/stretchr/testify/assert" - cmn "github.com/tendermint/tmlibs/common" - ctest "github.com/tendermint/tmlibs/common/test" wire "github.com/tendermint/go-wire" + cmn "github.com/tendermint/tmlibs/common" + ctest "github.com/tendermint/tmlibs/test" ) func makeTxs(cnt, size int) Txs { diff --git a/types/vote_set_test.go b/types/vote_set_test.go index 672b21a0a..6ef075927 100644 --- a/types/vote_set_test.go +++ b/types/vote_set_test.go @@ -3,9 +3,9 @@ package types import ( "bytes" - . "github.com/tendermint/tmlibs/common" - . "github.com/tendermint/tmlibs/common/test" "github.com/tendermint/go-crypto" + . "github.com/tendermint/tmlibs/common" + . "github.com/tendermint/tmlibs/test" "testing" )