From cea56f1e1d8d3913f3a7c7feb08922fac83beec1 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Mon, 27 Feb 2023 10:22:11 +0000 Subject: [PATCH] chore: silence unwanted clippy warning in test (#1566) --- crates/storage/db/src/implementation/mdbx/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/storage/db/src/implementation/mdbx/mod.rs b/crates/storage/db/src/implementation/mdbx/mod.rs index 8b9189c695..92f4860ff8 100644 --- a/crates/storage/db/src/implementation/mdbx/mod.rs +++ b/crates/storage/db/src/implementation/mdbx/mod.rs @@ -279,6 +279,7 @@ mod tests { assert_eq!(walker.next(), None); } + #[allow(clippy::reversed_empty_ranges)] #[test] fn db_cursor_walk_range_invalid() { let db: Arc> = test_utils::create_test_db(EnvKind::RW);