From 24e2b4867fa225a3f04ac7ca967b6a6b9fa819a0 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Fri, 15 May 2026 20:31:49 -0500 Subject: [PATCH] fix: patch around integration test warnings --- nomt/tests/common/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nomt/tests/common/mod.rs b/nomt/tests/common/mod.rs index eafde17b1f..f66304b74c 100644 --- a/nomt/tests/common/mod.rs +++ b/nomt/tests/common/mod.rs @@ -15,8 +15,10 @@ use std::{ static NEXT_TEST_ID: AtomicUsize = AtomicUsize::new(0); +#[allow(unused_imports)] pub use nomt_test_utils::{account_path, key_diverging_at}; +#[allow(dead_code)] pub fn expected_root(accounts: u64) -> Node { let mut ops = (0..accounts) .map(account_path) @@ -54,6 +56,7 @@ fn fill_missing_keys(g: &mut Gen, excluded: &mut BTreeSet, target: usiz out } +#[allow(dead_code)] pub fn apply_accesses(t: &mut Test, accesses: &[(KeyPath, KeyReadWrite)]) { for (key, access) in accesses { match access {