From 8d1cd2ec8783f3b3a304658edbac3320127dda4d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 29 Dec 2024 14:40:37 +0000 Subject: [PATCH] chore: allow missing docs on tests --- actix-codec/tests/test_framed_sink.rs | 2 ++ actix-server/tests/testing_server.rs | 2 ++ actix-tls/tests/test_connect.rs | 1 + actix-tls/tests/test_resolvers.rs | 1 + 4 files changed, 6 insertions(+) diff --git a/actix-codec/tests/test_framed_sink.rs b/actix-codec/tests/test_framed_sink.rs index 8c98ff18..4c911199 100644 --- a/actix-codec/tests/test_framed_sink.rs +++ b/actix-codec/tests/test_framed_sink.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use std::{ collections::VecDeque, io::{self, Write}, diff --git a/actix-server/tests/testing_server.rs b/actix-server/tests/testing_server.rs index 921caa05..ab3dc3f8 100644 --- a/actix-server/tests/testing_server.rs +++ b/actix-server/tests/testing_server.rs @@ -1,3 +1,5 @@ +#![allow(missing_docs)] + use std::net; use actix_rt::net::TcpStream; diff --git a/actix-tls/tests/test_connect.rs b/actix-tls/tests/test_connect.rs index c0a7fa76..f8aec7c5 100644 --- a/actix-tls/tests/test_connect.rs +++ b/actix-tls/tests/test_connect.rs @@ -1,4 +1,5 @@ #![cfg(feature = "connect")] +#![allow(missing_docs)] use std::{ io, diff --git a/actix-tls/tests/test_resolvers.rs b/actix-tls/tests/test_resolvers.rs index 24f22732..6d7a94c5 100644 --- a/actix-tls/tests/test_resolvers.rs +++ b/actix-tls/tests/test_resolvers.rs @@ -1,4 +1,5 @@ #![cfg(feature = "connect")] +#![allow(missing_docs)] use std::{ io,