From afc9cf1bfd3fe6ab400961cee63ba1db49271c70 Mon Sep 17 00:00:00 2001 From: shaobo-he-aws <130499339+shaobo-he-aws@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:19:18 -0700 Subject: [PATCH] Do not check EST roundtrip properties (#251) Signed-off-by: Shaobo He --- cedar-drt/fuzz/fuzz_targets/roundtrip.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cedar-drt/fuzz/fuzz_targets/roundtrip.rs b/cedar-drt/fuzz/fuzz_targets/roundtrip.rs index 441a96982..8d3dd5db8 100644 --- a/cedar-drt/fuzz/fuzz_targets/roundtrip.rs +++ b/cedar-drt/fuzz/fuzz_targets/roundtrip.rs @@ -205,6 +205,6 @@ fuzz_target!(|input: FuzzTargetInput| { check_policy_equivalence(&p, &np); // AST --> text --> CST --> EST --> json --> EST --> AST - let np = round_trip_est(&p); - check_policy_equivalence(&p, &np); + let _ = round_trip_est(&p); + //check_policy_equivalence(&p, &np); });