From 61138ed26847785306ad73d1146eb263ef877956 Mon Sep 17 00:00:00 2001 From: fakeshadow <24548779@qq.com> Date: Thu, 28 Jan 2021 02:15:44 -0800 Subject: [PATCH] remove unworking test --- actix-rt/tests/integration_tests.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/actix-rt/tests/integration_tests.rs b/actix-rt/tests/integration_tests.rs index fd579827..225fd53b 100644 --- a/actix-rt/tests/integration_tests.rs +++ b/actix-rt/tests/integration_tests.rs @@ -172,17 +172,3 @@ fn attack_to_tokio() { assert_eq!(res, 2); } - -#[tokio::test] -async fn attack_to_tokio_macro() { - use actix_rt::System; - - let rest_operations = run_application(); - let res = System::attach_to_tokio( - "actix-main-system", - tokio::runtime::Runtime::handle(&self), - rest_operations, - ); - - assert_eq!(res, 2); -}