From 8bfbd5210186d0f97681de8fce203e74749c384c Mon Sep 17 00:00:00 2001 From: beer-1 <147697694+beer-1@users.noreply.github.com> Date: Wed, 26 Jun 2024 22:40:02 +0900 Subject: [PATCH] fix test --- app/app_test.go | 1 + go.work | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/app_test.go b/app/app_test.go index 6b1c758..d4b3c39 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -79,6 +79,7 @@ func TestInitGenesisOnMigration(t *testing.T) { mockModule.EXPECT().ConsensusVersion().Times(1).Return(uint64(0)) app.ModuleManager.Modules["mock"] = mockModule + app.ModuleManager.OrderMigrations = append(app.ModuleManager.OrderMigrations, "mock") // Run migrations only for "mock" module. We exclude it from // the VersionMap to simulate upgrading with a new module. diff --git a/go.work b/go.work index 6516e22..694ccef 100644 --- a/go.work +++ b/go.work @@ -4,5 +4,3 @@ use ( . ./integration-tests ) - -replace github.com/ethereum/go-ethereum => ../go-ethereum