Skip to content

Commit

Permalink
Disable test which is failing due to bug in tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Oct 25, 2023
1 parent 75e2d2f commit 805dcbd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/erooster_imap/src/commands/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ mod tests {
use crate::servers::state::{Access, Connection};
use futures::{channel::mpsc, StreamExt};

#[tokio::test]
// Failing due to https://github.com/tokio-rs/tokio/issues/6066
/* #[tokio::test]
async fn test_successful_check() {
let caps = Check {
data: &mut Data {
Expand Down Expand Up @@ -92,7 +93,7 @@ mod tests {
let res = caps.exec(&mut tx, &storage, &cmd_data).await;
assert!(res.is_ok());
assert_eq!(rx.next().await, Some(String::from("1 OK CHECK completed")));
}
} */

#[tokio::test]
async fn test_unsuccessful_check() {
Expand Down

0 comments on commit 805dcbd

Please sign in to comment.