From 8097af6a27a12edda680c98ab569d0b3db1a855c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 29 Dec 2024 14:31:46 +0000 Subject: [PATCH] chore: allow missing docs on tests --- actix-macros/tests/trybuild.rs | 2 ++ actix-rt/tests/tests.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/actix-macros/tests/trybuild.rs b/actix-macros/tests/trybuild.rs index 5cfb1b6e..f50dd8c7 100644 --- a/actix-macros/tests/trybuild.rs +++ b/actix-macros/tests/trybuild.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + #[rustversion_msrv::msrv] #[test] fn compile_macros() { diff --git a/actix-rt/tests/tests.rs b/actix-rt/tests/tests.rs index 330e27ff..ae4c6812 100644 --- a/actix-rt/tests/tests.rs +++ b/actix-rt/tests/tests.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use std::{ future::Future, time::{Duration, Instant},