From c51a6a7bdddf885cb833889a4550150d839eefdc Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 16 Mar 2019 18:06:45 +0300 Subject: fix error on wrong path --- crates/test_utils/src/marks.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/test_utils') 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}; #[macro_export] macro_rules! tested_by { - ($ident:ident) => { + ($ident:ident) => {{ #[cfg(test)] { // sic! use call-site crate crate::marks::$ident.fetch_add(1, std::sync::atomic::Ordering::SeqCst); } - }; + }}; } #[macro_export] -- cgit v1.2.3