test: rm multi_thread flavor for tests (#865)

This commit is contained in:
Matthias Seitz
2023-01-13 13:50:05 +01:00
committed by GitHub
parent e3dbaf686e
commit bcbc3dacc7
3 changed files with 8 additions and 8 deletions

View File

@ -40,7 +40,7 @@ generic-array = "0.14"
[dev-dependencies] [dev-dependencies]
rand = "0.8" rand = "0.8"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["macros"] }
reth-tracing = { path = "../../tracing" } reth-tracing = { path = "../../tracing" }
[features] [features]

View File

@ -1885,7 +1885,7 @@ mod tests {
} }
} }
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
#[ignore] #[ignore]
async fn test_lookup() { async fn test_lookup() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();
@ -1921,7 +1921,7 @@ mod tests {
} }
} }
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
async fn test_mapped_ipv4() { async fn test_mapped_ipv4() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();
let mut rng = thread_rng(); let mut rng = thread_rng();
@ -1953,7 +1953,7 @@ mod tests {
}; };
} }
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
async fn test_single_lookups() { async fn test_single_lookups() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();
@ -1987,7 +1987,7 @@ mod tests {
.await .await
} }
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
async fn test_no_local_in_closest() { async fn test_no_local_in_closest() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();
@ -2020,7 +2020,7 @@ mod tests {
assert!(!closest.iter().any(|r| r.id == *service.local_peer_id())); assert!(!closest.iter().any(|r| r.id == *service.local_peer_id()));
} }
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
async fn test_random_lookup() { async fn test_random_lookup() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();
@ -2054,7 +2054,7 @@ mod tests {
assert_eq!(ctx.inner.closest_nodes.borrow().len(), 1); assert_eq!(ctx.inner.closest_nodes.borrow().len(), 1);
} }
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
async fn test_service_commands() { async fn test_service_commands() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();

View File

@ -289,7 +289,7 @@ mod tests {
/// This test creates two local UDP sockets. The mocked discovery service responds to specific /// This test creates two local UDP sockets. The mocked discovery service responds to specific
/// messages and we check the actual service receives answers /// messages and we check the actual service receives answers
#[tokio::test(flavor = "multi_thread")] #[tokio::test]
async fn can_mock_discovery() { async fn can_mock_discovery() {
reth_tracing::init_test_tracing(); reth_tracing::init_test_tracing();