summaryrefslogtreecommitdiffstats
path: root/tokio-macros/src/entry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-macros/src/entry.rs')
-rw-r--r--tokio-macros/src/entry.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tokio-macros/src/entry.rs b/tokio-macros/src/entry.rs
index 6a58b791..2681f50d 100644
--- a/tokio-macros/src/entry.rs
+++ b/tokio-macros/src/entry.rs
@@ -142,7 +142,7 @@ fn parse_knobs(
let header = {
if is_test {
quote! {
- #[test]
+ #[::core::prelude::v1::test]
}
} else {
quote! {}
@@ -334,14 +334,14 @@ pub(crate) mod old {
let result = match runtime {
Runtime::Threaded => quote! {
- #[test]
+ #[::core::prelude::v1::test]
#(#attrs)*
#vis fn #name() #ret {
tokio::runtime::Runtime::new().unwrap().block_on(async { #body })
}
},
Runtime::Basic | Runtime::Auto => quote! {
- #[test]
+ #[::core::prelude::v1::test]
#(#attrs)*
#vis fn #name() #ret {
tokio::runtime::Builder::new()