From 16e036204037ea2bba0ec56f9dd13f16f975f407 Mon Sep 17 00:00:00 2001 From: Juan Leni Date: Mon, 4 Feb 2019 07:53:05 +0100 Subject: [PATCH] Making explicit this tag is test related only --- Makefile | 2 +- crypto/ledger_integration_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5568c49e2da3..0b2c2c76be62 100644 --- a/Makefile +++ b/Makefile @@ -145,7 +145,7 @@ test_cli: @go test -p 4 `go list github.com/cosmos/cosmos-sdk/cmd/gaia/cli_test` -tags=cli_test test_ledger: - @go test `go list github.com/cosmos/cosmos-sdk/crypto` -tags='cgo ledger real_ledger' + @go test `go list github.com/cosmos/cosmos-sdk/crypto` -tags='cgo ledger test_real_ledger' test_unit: @VERSION=$(VERSION) go test $(PACKAGES_NOSIMULATION) diff --git a/crypto/ledger_integration_test.go b/crypto/ledger_integration_test.go index d8458b4021fe..30c66c765286 100644 --- a/crypto/ledger_integration_test.go +++ b/crypto/ledger_integration_test.go @@ -1,4 +1,4 @@ -// +build cgo,ledger,real_ledger +// +build cgo,ledger,test_real_ledger package crypto