compiler/rust: Don't use assert_eq!() with booleans

Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36849>
This commit is contained in:
Faith Ekstrand
2025-08-19 11:15:48 -04:00
committed by Marge Bot
parent e5f4d36192
commit d3fc91d6c2
+4 -4
View File
@@ -587,13 +587,13 @@ mod tests {
assert_eq!(to_vec(&actual_2), &expected[..]);
let mut actual_3 = a.clone();
assert_eq!(actual_3.union_with(a.s(..)), false);
assert_eq!(actual_3.union_with(b.s(..)), true);
assert!(!actual_3.union_with(a.s(..)));
assert!(actual_3.union_with(b.s(..)));
assert_eq!(to_vec(&actual_3), &expected[..]);
let mut actual_4 = b.clone();
assert_eq!(actual_4.union_with(b.s(..)), false);
assert_eq!(actual_4.union_with(a.s(..)), true);
assert!(!actual_4.union_with(b.s(..)));
assert!(actual_4.union_with(a.s(..)));
assert_eq!(to_vec(&actual_4), &expected[..]);
}