aboutsummaryrefslogtreecommitdiff
path: root/crates/test_utils/src/marks.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-03-16 15:06:45 +0000
committerAleksey Kladov <[email protected]>2019-03-17 09:53:22 +0000
commitc51a6a7bdddf885cb833889a4550150d839eefdc (patch)
tree514f9daf80d58325a93fee6194377bd36e5170de /crates/test_utils/src/marks.rs
parent0d6b8baa896f337dde27d569c09ebaab029e6daa (diff)
fix error on wrong path
Diffstat (limited to 'crates/test_utils/src/marks.rs')
-rw-r--r--crates/test_utils/src/marks.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/test_utils/src/marks.rs b/crates/test_utils/src/marks.rs
index 107432926..1c268b49c 100644
--- a/crates/test_utils/src/marks.rs
+++ b/crates/test_utils/src/marks.rs
@@ -30,13 +30,13 @@ use std::sync::atomic::{AtomicUsize, Ordering};
30 30
31#[macro_export] 31#[macro_export]
32macro_rules! tested_by { 32macro_rules! tested_by {
33 ($ident:ident) => { 33 ($ident:ident) => {{
34 #[cfg(test)] 34 #[cfg(test)]
35 { 35 {
36 // sic! use call-site crate 36 // sic! use call-site crate
37 crate::marks::$ident.fetch_add(1, std::sync::atomic::Ordering::SeqCst); 37 crate::marks::$ident.fetch_add(1, std::sync::atomic::Ordering::SeqCst);
38 } 38 }
39 }; 39 }};
40} 40}
41 41
42#[macro_export] 42#[macro_export]