We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c09567 commit e7a3de8Copy full SHA for e7a3de8
src/lib.rs
@@ -3,7 +3,7 @@
3
missing_debug_implementations,
4
missing_docs,
5
unreachable_pub,
6
- broken_intra_doc_links
+ rustdoc::broken_intra_doc_links
7
)]
8
#![cfg_attr(test, deny(warnings))]
9
tests/is_end_stream.rs
@@ -70,9 +70,8 @@ fn is_end_stream_default_false() {
70
size_hint: SizeHint::default(),
71
};
72
73
- assert_eq!(
74
- false,
75
- Pin::new(&mut mock).is_end_stream(),
+ assert!(
+ !Pin::new(&mut mock).is_end_stream(),
76
"size_hint = {:?}",
77
mock.size_hint.clone()
78
);
util/src/lib.rs
@@ -2,7 +2,7 @@
2
0 commit comments