Skip to content

Commit

Permalink
limit test_random_seqs to 20 steps max
Browse files Browse the repository at this point in the history
  • Loading branch information
hellwolf committed May 4, 2023
1 parent a2997bf commit 5716f0e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -199,7 +199,7 @@ contract AqueductTest is Test {
}
/** @dev Assert zero liquidity over generated random steps.
*/
function test_random_seqs(Step[] memory steps) external {
function test_random_seqs(Step[20] memory steps) external {
//if (vm.envOr("NO_FOUNDRY_TEST_STEPS_LIMIT", uint256(0)) == 0) vm.assume(steps.length < 20);
for (uint i = 0; i < steps.length; ++i) {
Step memory s = steps[i];
Expand Down

0 comments on commit 5716f0e

Please sign in to comment.