tests: fix ruff 0.15 formatting
Some checks failed
CI / Security Scan (push) Successful in 32s
CI / Lint & Format (push) Successful in 37s
CI / Security Tests (push) Successful in 41s
CI / Unit Tests (push) Successful in 1m4s
CI / Advanced Security Tests (push) Successful in 29s
CI / Memory Leak Check (push) Successful in 28s
CI / Fuzz Testing (push) Successful in 40s
CI / SBOM Generation (push) Successful in 33s
CI / Build & Push Image (push) Failing after 1m11s
CI / Harbor Vulnerability Scan (push) Has been skipped

This commit is contained in:
Username
2026-02-16 22:04:27 +01:00
parent c484c9ecc8
commit c996b7166d

View File

@@ -243,8 +243,10 @@ class TestJsonFuzzing:
@given(
data=st.recursive(
json_primitive,
lambda children: st.lists(children, max_size=5)
| st.dictionaries(st.text(max_size=10), children, max_size=5),
lambda children: (
st.lists(children, max_size=5)
| st.dictionaries(st.text(max_size=10), children, max_size=5)
),
max_leaves=20,
)
)