We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87d812 commit 1d1300fCopy full SHA for 1d1300f
http-body-util/src/lib.rs
@@ -2,7 +2,7 @@
2
missing_debug_implementations,
3
missing_docs,
4
unreachable_pub,
5
- broken_intra_doc_links
+ rustdoc::broken_intra_doc_links
6
)]
7
#![cfg_attr(test, deny(warnings))]
8
http-body/src/lib.rs
@@ -3,7 +3,7 @@
9
http-body/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
);
0 commit comments