summaryrefslogtreecommitdiff
path: root/crates/tor-circmgr/src/path
diff options
context:
space:
mode:
Diffstat (limited to 'crates/tor-circmgr/src/path')
-rw-r--r--crates/tor-circmgr/src/path/dirpath.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/crates/tor-circmgr/src/path/dirpath.rs b/crates/tor-circmgr/src/path/dirpath.rs
index 4bd9d0219..01e1caef8 100644
--- a/crates/tor-circmgr/src/path/dirpath.rs
+++ b/crates/tor-circmgr/src/path/dirpath.rs
@@ -80,8 +80,15 @@ impl DirPathBuilder {
#[cfg(test)]
mod test {
- #![allow(clippy::unwrap_used)]
+ // @@ begin test lint list maintained by maint/add_warning @@
+ #![allow(clippy::bool_assert_comparison)]
#![allow(clippy::clone_on_copy)]
+ #![allow(clippy::dbg_macro)]
+ #![allow(clippy::print_stderr)]
+ #![allow(clippy::print_stdout)]
+ #![allow(clippy::unwrap_used)]
+ //! <!-- @@ end test lint list maintained by maint/add_warning @@ -->
+
use super::*;
use crate::path::assert_same_path_when_owned;
use crate::test::OptDummyGuardMgr;