clear up some warnings in tests.

This commit is contained in:
Lokathor 2024-02-08 22:09:44 -07:00
parent 031a0350ca
commit 5f4717633d
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#![allow(clippy::disallowed_names)] #![allow(clippy::disallowed_names)]
#![allow(dead_code)]
//! Cargo miri doesn't run doctests yet, so we duplicate these here. It's //! Cargo miri doesn't run doctests yet, so we duplicate these here. It's
//! probably not that important to sweat keeping these perfectly up to date, but //! probably not that important to sweat keeping these perfectly up to date, but

View File

@ -1,4 +1,5 @@
#![allow(clippy::uninlined_format_args)] #![allow(clippy::uninlined_format_args)]
#![allow(unused_imports)]
//! The integration tests seem to always have `std` linked, so things that would //! The integration tests seem to always have `std` linked, so things that would
//! depend on that can go here. //! depend on that can go here.