summaryrefslogtreecommitdiffstats
path: root/tests-integration
diff options
context:
space:
mode:
Diffstat (limited to 'tests-integration')
-rw-r--r--tests-integration/Cargo.toml8
-rw-r--r--tests-integration/tests/macros_main.rs2
2 files changed, 5 insertions, 5 deletions
diff --git a/tests-integration/Cargo.toml b/tests-integration/Cargo.toml
index c6dd8450..105b9c61 100644
--- a/tests-integration/Cargo.toml
+++ b/tests-integration/Cargo.toml
@@ -8,16 +8,16 @@ publish = false
[features]
full = [
"macros",
- "rt-core",
- "rt-threaded",
+ "rt",
+ "rt-multi-thread",
"tokio/full",
"tokio-test"
]
macros = ["tokio/macros"]
sync = ["tokio/sync"]
-rt-core = ["tokio/rt-core"]
-rt-threaded = ["rt-core", "tokio/rt-threaded"]
+rt = ["tokio/rt"]
+rt-multi-thread = ["rt", "tokio/rt-multi-thread"]
[dependencies]
tokio = { path = "../tokio" }
diff --git a/tests-integration/tests/macros_main.rs b/tests-integration/tests/macros_main.rs
index 868adb0f..efe1ea9b 100644
--- a/tests-integration/tests/macros_main.rs
+++ b/tests-integration/tests/macros_main.rs
@@ -1,4 +1,4 @@
-#![cfg(all(feature = "macros", feature = "rt-core"))]
+#![cfg(all(feature = "macros", feature = "rt"))]
#[tokio::main]
async fn basic_main() -> usize {