fix crypto tests

This commit is contained in:
Liamsi
2018-06-20 17:34:28 -07:00
parent eedd20f4d5
commit 587505d4d2
3 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
# go-crypto [![GoDoc](https://godoc.org/github.com/tendermint/go-crypto?status.svg)](https://godoc.org/github.com/tendermint/go-crypto) # go-crypto
go-crypto is the cryptographic package adapted for Tendermint's uses go-crypto is the cryptographic package adapted for Tendermint's uses
## Importing it ## Importing it
`import "github.com/tendermint/go-crypto"` `import "github.com/tendermint/tendermint/crypto"`
## Binary encoding ## Binary encoding

View File

@ -17,7 +17,7 @@ package crypto_test
import ( import (
"fmt" "fmt"
"github.com/tendermint/go-crypto" "github.com/tendermint/tendermint/crypto"
) )
func ExampleSha256() { func ExampleSha256() {

View File

@ -4,7 +4,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
crypto "github.com/tendermint/go-crypto" "github.com/tendermint/tendermint/crypto"
) )
func TestGeneratePrivKey(t *testing.T) { func TestGeneratePrivKey(t *testing.T) {