Skip to content

Commit c292171

Browse files
Suppress clippy warnings in tests/
This is a known issue as these kind of warnings are already disabled on the lib.rs level in the crate.
1 parent 0938f1c commit c292171

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

tests/client_headers.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![cfg(feature = "handshake")]
2+
#![allow(clippy::result_large_err)]
23

34
use http::Uri;
45
use std::{

tests/handshake.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![cfg(feature = "handshake")]
2+
#![allow(clippy::result_large_err)]
23
use std::{
34
net::TcpListener,
45
thread::{sleep, spawn},

tests/url_feature.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![cfg(feature = "handshake")]
22
#![cfg(feature = "url")]
3+
#![allow(clippy::result_large_err)]
34

45
use std::{
56
assert,

0 commit comments

Comments
 (0)