Skip to content

Commit

Permalink
never seal config in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed Sep 24, 2024
1 parent 87f6474 commit 9e3c783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/emissions/abci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ func TestBeginBlocker(t *testing.T) {
}

func TestDistributeObserverRewards(t *testing.T) {
sdkconfig.SetDefault(true)
sdkconfig.SetDefault(false)
k, ctx, _, _ := keepertest.EmissionsKeeper(t)
observerSet := sample.ObserverSet(4)

Expand Down
2 changes: 1 addition & 1 deletion x/observer/types/message_vote_block_header_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
)

func TestMsgVoteBlockHeader_ValidateBasic(t *testing.T) {
sdkconfig.SetDefault(true)
sdkconfig.SetDefault(false)
var header ethtypes.Header
file, err := os.Open("../../../testutil/testdata/eth_header_18495266.json")
require.NoError(t, err)
Expand Down

0 comments on commit 9e3c783

Please sign in to comment.