Skip to content

Commit

Permalink
Remove ignore blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoniosBarotsis committed Dec 13, 2024
1 parent a1f9fed commit d4c793f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/emails.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>";
let to = ["[email protected]"];
Expand Down Expand Up @@ -566,7 +566,7 @@ mod test {
}

#[test]
#[ignore]
// #[ignore]
#[cfg(feature = "blocking")]
fn all_blocking() -> Result<()> {
let from = "Acme <[email protected]>";
Expand All @@ -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))
Expand Down

0 comments on commit d4c793f

Please sign in to comment.