From 8257d216bb8029d03a18f507ea446d673cd5a4ca Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Mon, 15 Dec 2025 00:10:03 +0800 Subject: [PATCH] Fixing tests --- arango/formatter.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arango/formatter.py b/arango/formatter.py index d90f5a87..ebbb070c 100644 --- a/arango/formatter.py +++ b/arango/formatter.py @@ -903,6 +903,10 @@ def format_view_consolidation_policy(body: Json) -> Json: result["segments_bytes_floor"] = body["segmentsBytesFloor"] if "minScore" in body: result["min_score"] = body["minScore"] + if "maxSkewThreshold" in body: + result["max_skew_threshold"] = body["maxSkewThreshold"] + if "minDeletionRatio" in body: + result["min_deletion_ratio"] = body["minDeletionRatio"] return verify_format(body, result)