Skip to content

Commit 2d0de24

Browse files
committed
Remove more parallelization
1 parent 4813709 commit 2d0de24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

system_tests/fast_confirm_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func setupFastConfirmation(ctx context.Context, t *testing.T) (*NodeBuilder, *le
175175
}()
176176
var transferGas = util.NormalizeL2GasForL1GasInitial(800_000, params.GWei) // include room for aggregator L1 costs
177177

178-
builder := NewNodeBuilder(ctx).DefaultConfig(t, true).WithProdConfirmPeriodBlocks()
178+
builder := NewNodeBuilder(ctx).DefaultConfig(t, true).WithProdConfirmPeriodBlocks().DontParalellise()
179179
builder.L2Info = NewBlockChainTestInfo(
180180
t,
181181
types.NewArbitrumSigner(types.NewLondonSigner(builder.chainConfig.ChainID)), big.NewInt(l2pricing.InitialBaseFeeWei*2),

system_tests/program_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ func TestStylusPrecompileMethodsSimple(t *testing.T) {
12901290
ctx, cancel := context.WithCancel(context.Background())
12911291
defer cancel()
12921292

1293-
builder := NewNodeBuilder(ctx).DefaultConfig(t, true)
1293+
builder := NewNodeBuilder(ctx).DefaultConfig(t, true).DontParalellise()
12941294
cleanup := builder.Build(t)
12951295
defer cleanup()
12961296

0 commit comments

Comments
 (0)