clean tests

This commit is contained in:
Quentin 2024-01-02 23:43:58 +01:00
parent f480ff0d31
commit c9a33c080d
Signed by: quentin
GPG Key ID: E9602264D639FF68
1 changed files with 1 additions and 2 deletions

View File

@ -307,7 +307,6 @@ fn append_email(imap: &mut TcpStream, ref_mail: &[u8]) -> Result<()> {
// check it is stored successfully
imap.write(&b"49 fetch 2 rfc822.size\r\n"[..])?;
println!("sent fetch size");
let read = read_lines(imap, &mut buffer, Some(&b"49 OK"[..]))?;
let expected = format!("* 2 FETCH (RFC822.SIZE {})", ref_mail.len());
let expbytes = expected.as_bytes();
@ -381,7 +380,7 @@ fn read_lines<'a, F: Read>(
let mut nbytes = 0;
loop {
nbytes += reader.read(&mut buffer[nbytes..])?;
println!("partial read: {}", std::str::from_utf8(&buffer[..nbytes])?);
//println!("partial read: {}", std::str::from_utf8(&buffer[..nbytes])?);
let pre_condition = match stop_marker {
None => true,
Some(mark) => buffer[..nbytes].windows(mark.len()).any(|w| w == mark),