Skip to content

Commit

Permalink
tests: fix e2e TestAssetValidRounds after libgoal adjustment (#5632)
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy committed Aug 4, 2023
1 parent 8b19c62 commit 5acab71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e-go/features/transactions/asset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func TestAssetValidRounds(t *testing.T) {
// ledger may advance between SuggestedParams and FillUnsignedTxTemplate calls
// expect validity sequence
var firstValidRange, lastValidRange []uint64
for i := lastRoundBefore + 1; i <= lastRoundAfter+1; i++ {
for i := lastRoundBefore; i <= lastRoundAfter+1; i++ {
firstValidRange = append(firstValidRange, i)
lastValidRange = append(lastValidRange, i+cparams.MaxTxnLife)
}
Expand Down

0 comments on commit 5acab71

Please sign in to comment.