From d4c793f7f323dc0f7b676ca22fd977a847362cc5 Mon Sep 17 00:00:00 2001 From: Antonios Barotsis Date: Fri, 13 Dec 2024 01:42:10 +0100 Subject: [PATCH] Remove ignore blocks --- src/emails.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emails.rs b/src/emails.rs index 0dd3acc..424b549 100644 --- a/src/emails.rs +++ b/src/emails.rs @@ -487,7 +487,7 @@ mod test { #[tokio_shared_rt::test(shared = true)] #[cfg(not(feature = "blocking"))] - #[ignore] + // #[ignore] async fn all() -> Result<()> { let from = "Acme "; let to = ["delivered@resend.dev"]; @@ -566,7 +566,7 @@ mod test { } #[test] - #[ignore] + // #[ignore] #[cfg(feature = "blocking")] fn all_blocking() -> Result<()> { let from = "Acme "; @@ -587,7 +587,7 @@ mod test { #[tokio_shared_rt::test(shared = true)] #[cfg(not(feature = "blocking"))] - #[ignore] + // #[ignore] async fn schedule_email() -> Result<()> { let now_plus_1h = Zoned::now() .checked_add(Span::new().hours(1))