Skip to content

Commit

Permalink
removed (my own) comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fangs124 committed Apr 24, 2024
1 parent 9ea5e0e commit 12a2046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/matrix.rs
Expand Up @@ -924,7 +924,7 @@ mod transposition_tests {
prop_assert!(relative_eq!(m.transpose() * v, m.tr_mul(&v), epsilon = 1.0e-7))
}

#[test] //this one gives an error
#[test]
fn mul_tr_is_transpose_rhs_then_mul(m in matrix(PROPTEST_F64, Const::<6>, Const::<4>), v in vector4()) {
prop_assert!(relative_eq!(m * v, m.mul_tr(&v.transpose()), epsilon = 1.0e-7))
}
Expand Down

0 comments on commit 12a2046

Please sign in to comment.