Skip to content

Commit

Permalink
Run test e2e test with random post size
Browse files Browse the repository at this point in the history
  • Loading branch information
fasmat committed Mar 1, 2024
1 parent d775a9c commit 9fdf414
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions activation/e2e/activation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package activation_test

import (
"context"
"math/rand"
"sync"
"testing"
"time"
Expand Down Expand Up @@ -70,6 +71,7 @@ func Test_BuilderWithMultipleClients(t *testing.T) {
require.NoError(t, err)

opts.DataDir = t.TempDir()
opts.NumUnits = uint32(rand.Int31n(int32(cfg.MaxNumUnits/2-cfg.MinNumUnits))) + cfg.MinNumUnits
initPost(t, mgr, opts, sig.NodeID())
t.Cleanup(launchPostSupervisor(t, logger, mgr, sig.NodeID(), grpcCfg, opts))

Expand Down

0 comments on commit 9fdf414

Please sign in to comment.