Skip to content

Commit

Permalink
stellar#4909: fixed integration test to not submit multiple tx per ac…
Browse files Browse the repository at this point in the history
…count per ledger
  • Loading branch information
sreuland committed Oct 23, 2023
1 parent df07d8b commit 9a1010b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/horizon/internal/integration/txsub_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ func TestTxsub(t *testing.T) {
itest := integration.NewTest(t, integration.Config{})
master := itest.Master()

// Sanity check: create 20 accounts and submit 2 txs from each of them as
// a source at the same time. Then check if the results are correct.
t.Run("Sanity", func(t *testing.T) {
// simplify this to one tx per account, to align with core capabilities of one
// tx per account per ledger.
testAccounts := 20
subsPerAccont := 2
subsPerAccont := 1
keys, accounts := itest.CreateAccounts(testAccounts, "1000")

var wg sync.WaitGroup
Expand Down

0 comments on commit 9a1010b

Please sign in to comment.