Skip to content

Commit 7b17d71

Browse files
committed
fix app_test and lint
1 parent 8389f05 commit 7b17d71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/app_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func TestAppUpgrade_CannotDeleteLatestVersion(t *testing.T) {
7171
encCfg,
7272
EmptyAppOptions{},
7373
func(app *baseapp.BaseApp) {
74-
cms := rootmulti.NewStore(db)
74+
cms := rootmulti.NewStore(db, app.Logger())
7575
cms.SetPruning(storetypes.PruneDefault)
7676
app.SetCMS(cms)
7777
},
@@ -156,7 +156,7 @@ func TestAppUpgrade_CannotLoadCorruptStoreUsingLatestHeight(t *testing.T) {
156156
encCfg,
157157
EmptyAppOptions{},
158158
func(app *baseapp.BaseApp) {
159-
cms := rootmulti.NewStore(db)
159+
cms := rootmulti.NewStore(db, app.Logger())
160160
cms.SetPruning(storetypes.PruneDefault)
161161
app.SetCMS(cms)
162162
},
@@ -190,7 +190,7 @@ func TestAppUpgrade_CannotLoadCorruptStoreUsingLatestHeight(t *testing.T) {
190190
encCfg,
191191
EmptyAppOptions{},
192192
func(app *baseapp.BaseApp) {
193-
cms := rootmulti.NewStore(db)
193+
cms := rootmulti.NewStore(db, app.Logger())
194194
cms.SetPruning(storetypes.PruneDefault)
195195
app.SetCMS(cms)
196196
},

0 commit comments

Comments
 (0)