We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c293d3 commit 7fe2a1bCopy full SHA for 7fe2a1b
tests/buf_writer.rs
@@ -4,6 +4,7 @@ use async_std::task;
4
5
#[test]
6
fn test_buffered_writer() {
7
+ #![allow(clippy::cognitive_complexity)]
8
task::block_on(async {
9
let inner = Vec::new();
10
let mut writer = BufWriter::with_capacity(2, inner);
tests/channel.rs
@@ -37,6 +37,7 @@ fn capacity() {
37
38
39
fn len_empty_full() {
40
41
42
let (s, r) = channel(2);
43
0 commit comments