mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-04 15:36:40 +00:00
fix clippy::cognitive_complexity
This commit is contained in:
parent
7c293d37f7
commit
7fe2a1bbce
2 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,7 @@ use async_std::task;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_buffered_writer() {
|
fn test_buffered_writer() {
|
||||||
|
#![allow(clippy::cognitive_complexity)]
|
||||||
task::block_on(async {
|
task::block_on(async {
|
||||||
let inner = Vec::new();
|
let inner = Vec::new();
|
||||||
let mut writer = BufWriter::with_capacity(2, inner);
|
let mut writer = BufWriter::with_capacity(2, inner);
|
||||||
|
|
|
@ -37,6 +37,7 @@ fn capacity() {
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn len_empty_full() {
|
fn len_empty_full() {
|
||||||
|
#![allow(clippy::cognitive_complexity)]
|
||||||
task::block_on(async {
|
task::block_on(async {
|
||||||
let (s, r) = channel(2);
|
let (s, r) = channel(2);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue