Co-authored-by: unknown unknown <unknown@unknown> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
14 lines
167 B
Go
14 lines
167 B
Go
package accounts
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"cosmossdk.io/simapp"
|
|
)
|
|
|
|
func setupApp(t *testing.T) *simapp.SimApp {
|
|
t.Helper()
|
|
app := simapp.Setup(t, false)
|
|
return app
|
|
}
|