From c410ad32984214ebef3fe1af8f568d7bab8ab344 Mon Sep 17 00:00:00 2001 From: An-anonymous-coder <130810665+An-anonymous-coder@users.noreply.github.com> Date: Thu, 7 May 2026 15:41:06 -0400 Subject: [PATCH] Update rx_vms.rs ``` warning: this lint expectation is unfulfilled --> consensus/src/tests/context/rx_vms.rs:40:10 | 40 | #[expect(unused_qualifications, reason = "false positive in tokio macro")] | ^^^^^^^^^^^^^^^^^^^^^ | = note: false positive in tokio macro = note: `#[warn(unfulfilled_lint_expectations)]` on by default warning: this lint expectation is unfulfilled --> consensus/src/tests/context/rx_vms.rs:56:10 | 56 | #[expect(unused_qualifications, reason = "false positive in tokio macro")] | ^^^^^^^^^^^^^^^^^^^^^ | = note: false positive in tokio macro ``` --- consensus/src/tests/context/rx_vms.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/consensus/src/tests/context/rx_vms.rs b/consensus/src/tests/context/rx_vms.rs index 0dea99b49..3cb1dfa79 100644 --- a/consensus/src/tests/context/rx_vms.rs +++ b/consensus/src/tests/context/rx_vms.rs @@ -37,7 +37,6 @@ fn rx_heights_consistent() { } #[tokio::test] -#[expect(unused_qualifications, reason = "false positive in tokio macro")] async fn rx_vm_created_on_hf_12() { let db = DummyDatabaseBuilder::default().finish(Some(10)); @@ -53,7 +52,6 @@ async fn rx_vm_created_on_hf_12() { } #[tokio::test] -#[expect(unused_qualifications, reason = "false positive in tokio macro")] async fn rx_vm_pop_blocks() { let db = DummyDatabaseBuilder::default().finish(Some(2_000_000));