Skip to content

Commit afc9cf1

Browse files
Do not check EST roundtrip properties (#251)
Signed-off-by: Shaobo He <[email protected]>
1 parent 69a3c6a commit afc9cf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cedar-drt/fuzz/fuzz_targets/roundtrip.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,6 @@ fuzz_target!(|input: FuzzTargetInput| {
205205
check_policy_equivalence(&p, &np);
206206

207207
// AST --> text --> CST --> EST --> json --> EST --> AST
208-
let np = round_trip_est(&p);
209-
check_policy_equivalence(&p, &np);
208+
let _ = round_trip_est(&p);
209+
//check_policy_equivalence(&p, &np);
210210
});

0 commit comments

Comments
 (0)