We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219e52b commit 705dbf8Copy full SHA for 705dbf8
src/tests/test_validation_criteria.rs
@@ -55,11 +55,7 @@ mod instance_validation {
55
56
// Try to convert to canonical form
57
let result = CanonicalLinearRelation::try_from(&relation);
58
-
59
- // The conversion might succeed, but we should verify the image contains zero
60
- if let Ok(canonical) = result {
61
- assert!(canonical.image.iter().any(|&elem| elem == G::identity()));
62
- }
+ assert!(result.is_err())
63
}
64
65
#[test]
0 commit comments