Skip to content

Commit

Permalink
fix ante unit test after cosmos#6287 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedaly113 committed May 27, 2020
1 parent 859a420 commit 607d213
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x/auth/ante/sigverify_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,11 @@ func TestIncrementSequenceDecorator(t *testing.T) {
simulate bool
expectedSeq uint64
}{
{ctx.WithIsReCheckTx(true), false, 0},
{ctx.WithIsCheckTx(true).WithIsReCheckTx(false), false, 1},
{ctx.WithIsReCheckTx(true), false, 1},
{ctx.WithIsReCheckTx(true), false, 1},
{ctx.WithIsReCheckTx(true), true, 2},
{ctx.WithIsCheckTx(true).WithIsReCheckTx(false), false, 2},
{ctx.WithIsReCheckTx(true), false, 3},
{ctx.WithIsReCheckTx(true), false, 4},
{ctx.WithIsReCheckTx(true), true, 5},
}

for i, tc := range testCases {
Expand Down

0 comments on commit 607d213

Please sign in to comment.