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 7432c98 commit 6f4e8f5Copy full SHA for 6f4e8f5
src/assert.rs
@@ -70,10 +70,10 @@ macro_rules! generate_assert {
70
#[macro_export]
71
macro_rules! $assert {
72
($test:expr, $truth:expr, $tol:expr) => {
73
- $close($test, $truth, $tol).unwrap();
+ $crate::$close($test, $truth, $tol).unwrap();
74
};
75
($test:expr, $truth:expr, $tol:expr; $comment:expr) => {
76
- $close($test, $truth, $tol).expect($comment);
+ $crate::$close($test, $truth, $tol).expect($comment);
77
78
}
79
}} // generate_assert!
0 commit comments