Skip to content

Commit a36f063

Browse files
committed
fix linting issues
1 parent 2815e3b commit a36f063

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/v2/example/example_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ import (
2222

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

28-
var (
29-
mintKeeper *mintkeeper.Keeper
30-
)
30+
var mintKeeper *mintkeeper.Keeper
3131

3232
moduleConfigs := []configurator.ModuleOption{
3333
configurator.AccountsModule(),

0 commit comments

Comments
 (0)