Skip to content

Commit

Permalink
shorten snapshotter test
Browse files Browse the repository at this point in the history
  • Loading branch information
magicxyyz committed Jan 30, 2025
1 parent 7368ce0 commit 14935b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/snapshotter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func TestDatabsaseSnapshotter(t *testing.T) {
}()
var txes []*types.Transaction
var users []string
for i := 0; i < 127; i++ {
for i := 0; i < 63; i++ {
user := fmt.Sprintf("user-%d", i)
users = append(users, user)
builder.L2Info.GenerateAccount(user)
Expand All @@ -61,7 +61,7 @@ func TestDatabsaseSnapshotter(t *testing.T) {
go func() {
defer wg.Done()
auth := builder.L2Info.GetDefaultTransactOpts(user, ctx)
for j := 0; j < 16; j++ {
for j := 0; j < 15; j++ {
_, simple := builder.L2.DeploySimple(t, auth)
var txes []*types.Transaction
for k := 0; k < j; k++ {
Expand Down

0 comments on commit 14935b7

Please sign in to comment.