Skip to content

Commit

Permalink
Merge pull request tendermint#10 from BiJie/feature/fix_test
Browse files Browse the repository at this point in the history
fix mempool test
  • Loading branch information
darren-liu committed Nov 21, 2018
2 parents 759be18 + 74ced3b commit 6fad36f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions mempool/mempool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ func TestReapMaxBytesMaxGas(t *testing.T) {
{20, 0, -1, 0},
{20, 0, 10, 0},
{20, 10, 10, 0},
{20, 21, 10, 1},
{20, 210, -1, 10},
{20, 210, 5, 5},
{20, 210, 10, 10},
{20, 210, 15, 10},
{20, 20000, -1, 20},
{20, 20000, 5, 5},
{20, 20000, 30, 20},
{20, 22, 10, 1},
{20, 220, -1, 10},
{20, 215, 5, 5},
{20, 220, 10, 10},
{20, 220, 15, 10},
{20, 20020, -1, 20},
{20, 20005, 5, 5},
{20, 20020, 30, 20},
}
for tcIndex, tt := range tests {
checkTxs(t, mempool, tt.numTxsToCreate)
Expand Down

0 comments on commit 6fad36f

Please sign in to comment.