Skip to content

Commit 90e2a9a

Browse files
committed
Tests are broken due to tokio-rs/tokio#6066
1 parent 805dcbd commit 90e2a9a

File tree

1 file changed

+2
-3
lines changed
  • crates/erooster_imap/src/commands

1 file changed

+2
-3
lines changed

crates/erooster_imap/src/commands/check.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ mod tests {
6464
use crate::servers::state::{Access, Connection};
6565
use futures::{channel::mpsc, StreamExt};
6666

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

9897
#[tokio::test]
9998
async fn test_unsuccessful_check() {

0 commit comments

Comments
 (0)