Skip to content

Commit

Permalink
fix(build): fix build tags (#23132)
Browse files Browse the repository at this point in the history
Co-authored-by: auricom <[email protected]>
Co-authored-by: marbar3778 <[email protected]>
  • Loading branch information
3 people authored Dec 31, 2024
1 parent 4fb2347 commit 986974a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions scripts/build/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ MOCKS_DIR = $(CURDIR)/tests/mocks
HTTPS_GIT := https://github.com/cosmos/cosmos-sdk.git
DOCKER := $(shell which docker)
PROJECT_NAME = $(shell git remote get-url origin | xargs basename -s .git)
COSMOS_BUILD_OPTIONS := v2
COSMOS_BUILD_OPTIONS += ' v2'

rocksdb_version=v9.6.1
rocksdb_version=v9.7.3

ifeq ($(findstring .,$(VERSION)),)
VERSION := 0.0.0
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/v2/example/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ import (

// Example shows how to use the integration test framework to test the integration of SDK modules.
// Panics are used in this example, but in a real test case, you should use the testing.T object and assertions.
// nolint:govet // ignore removal of parameter here as its run as a test as well.
func Example(t *testing.T) {
t.Helper()
authority := authtypes.NewModuleAddress("gov").String()

var (
mintKeeper *mintkeeper.Keeper
)
var mintKeeper *mintkeeper.Keeper

moduleConfigs := []configurator.ModuleOption{
configurator.AccountsModule(),
Expand Down

0 comments on commit 986974a

Please sign in to comment.