From 0034de35363e7323abc12e3603bfaff19959de72 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Mon, 15 Feb 2021 16:53:00 -0500 Subject: [PATCH] fix tests, oops Signed-off-by: Christine Dodrill --- src/post/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/post/mod.rs b/src/post/mod.rs index edbb89c..b5303a8 100644 --- a/src/post/mod.rs +++ b/src/post/mod.rs @@ -133,20 +133,20 @@ mod tests { #[tokio::test] async fn blog() { let _ = pretty_env_logger::try_init(); - load("blog", None).await.expect("posts to load"); + load("blog").await.expect("posts to load"); } #[tokio::test] async fn gallery() -> Result<()> { let _ = pretty_env_logger::try_init(); - load("gallery", None).await?; + load("gallery").await?; Ok(()) } #[tokio::test] async fn talks() -> Result<()> { let _ = pretty_env_logger::try_init(); - load("talks", None).await?; + load("talks").await?; Ok(()) } }