diff --git a/cedar-drt/fuzz/src/schemas.rs b/cedar-drt/fuzz/src/schemas.rs index a4e36006f..b6d319eb1 100644 --- a/cedar-drt/fuzz/src/schemas.rs +++ b/cedar-drt/fuzz/src/schemas.rs @@ -251,6 +251,13 @@ impl Equiv for cedar_policy_validator::ValidatorEntityType { &lhs.attributes().collect::>(), &rhs.attributes().collect::>(), )?; + if lhs.tag_type() != rhs.tag_type() { + return Err(format!( + "encountered different tags types: {:?} and {:?}", + lhs.tag_type(), + rhs.tag_type() + )); + } Ok(()) } }