You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clippy complains if the return value is a boolean, since this results in a assert_eq!(expected_bool, actual_bool), which clippy was rather a assert!(actual_bool) or assert!(!actual_bool)
workaround is to add a #[allow(clippy::bool_assert_comparison)] to the test attributes. I think test-case should do that internally
The text was updated successfully, but these errors were encountered:
clippy complains if the return value is a boolean, since this results in a
assert_eq!(expected_bool, actual_bool)
, which clippy was rather aassert!(actual_bool)
orassert!(!actual_bool)
workaround is to add a
#[allow(clippy::bool_assert_comparison)]
to the test attributes. I thinktest-case
should do that internallyThe text was updated successfully, but these errors were encountered: