Skip to content

Commit

Permalink
don't run pointless test while AVM is more advanced than vFuture
Browse files Browse the repository at this point in the history
  • Loading branch information
jannotti committed Dec 19, 2024
1 parent 584df1f commit 0a2a364
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ledger/simulation/simulation_eval_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8587,6 +8587,10 @@ func TestUnnamedResourcesLimits(t *testing.T) {
defer env.Close()

proto := env.TxnInfo.CurrentProtocolParams()
if v > int(proto.LogicSigVersion) {
t.Skip("not testing in unsupported proto")
return
}

sender := env.Accounts[0]
otherAccounts := make([]basics.Address, len(env.Accounts)-1)
Expand Down

0 comments on commit 0a2a364

Please sign in to comment.