mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
pos-845: parallelise subtests
This commit is contained in:
parent
3e4b872e16
commit
27cd2ae11a
1 changed files with 3 additions and 0 deletions
|
|
@ -195,7 +195,10 @@ func TestForkWithBlockTime(t *testing.T) {
|
|||
genesis := initGenesis(t)
|
||||
|
||||
for _, test := range cases {
|
||||
test := test
|
||||
t.Run(test.name, func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
genesis.Config.Bor.Sprint = test.sprint
|
||||
genesis.Config.Bor.Period = test.blockTime
|
||||
genesis.Config.Bor.BackupMultiplier = test.blockTime
|
||||
|
|
|
|||
Loading…
Reference in a new issue