diff --git a/tests/test_display.rs b/tests/test_display.rs index 99ce2fd..6f60388 100644 --- a/tests/test_display.rs +++ b/tests/test_display.rs @@ -1,3 +1,5 @@ +#![allow(clippy::uninlined_format_args)] + use std::fmt::{self, Display}; use thiserror::Error; diff --git a/tests/test_generics.rs b/tests/test_generics.rs index 4ab9f37..c94d95e 100644 --- a/tests/test_generics.rs +++ b/tests/test_generics.rs @@ -1,4 +1,4 @@ -#![allow(clippy::needless_late_init)] +#![allow(clippy::needless_late_init, clippy::uninlined_format_args)] use std::fmt::{self, Debug, Display}; use thiserror::Error;