We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2815e3b commit a36f063Copy full SHA for a36f063
tests/integration/v2/example/example_test.go
@@ -22,12 +22,12 @@ import (
22
23
// Example shows how to use the integration test framework to test the integration of SDK modules.
24
// 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.
26
func Example(t *testing.T) {
27
+ t.Helper()
28
authority := authtypes.NewModuleAddress("gov").String()
29
- var (
- mintKeeper *mintkeeper.Keeper
30
- )
+ var mintKeeper *mintkeeper.Keeper
31
32
moduleConfigs := []configurator.ModuleOption{
33
configurator.AccountsModule(),
0 commit comments