We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7fab45 commit f54f132Copy full SHA for f54f132
tests/buf_writer.rs
@@ -54,7 +54,7 @@ fn test_buffered_writer_inner_into_inner_does_not_flush() {
54
w.write(&[0, 1]).await.unwrap();
55
assert_eq!(*w.get_ref(), []);
56
let w = w.into_inner().await.unwrap();
57
- assert_eq!(w, []);
+ assert_eq!(w, [0, 1]]);
58
})
59
}
60
0 commit comments