Skip to content

Commit f413ba7

Browse files
committed
chore(test): further reduce recursion depth in arbitrary filters
1 parent 06f4de4 commit f413ba7

File tree

1 file changed

+1
-1
lines changed
  • crates/rsonpath-syntax-proptest/src

1 file changed

+1
-1
lines changed

crates/rsonpath-syntax-proptest/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ mod filters {
461461
pub(super) fn any_logical_expr(
462462
test_query_strategy: Option<BoxedStrategy<(String, JsonPathQuery)>>,
463463
) -> impl Strategy<Value = (String, LogicalExpr)> {
464-
any_atomic_logical_expr(test_query_strategy).prop_recursive(5, 32, 2, |inner| {
464+
any_atomic_logical_expr(test_query_strategy).prop_recursive(3, 10, 2, |inner| {
465465
prop_oneof![
466466
(inner.clone(), proptest::bool::ANY).prop_map(|((s, f), force_paren)| (
467467
match f {

0 commit comments

Comments
 (0)