diff options
| author | Christine Dodrill <me@christine.website> | 2021-02-15 16:53:00 -0500 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2021-02-15 16:53:00 -0500 |
| commit | 0034de35363e7323abc12e3603bfaff19959de72 (patch) | |
| tree | 3243be2861433906b2f377f109febbdf5fb116d4 | |
| parent | f8c13c6eaa7bca1c45fe2e759b3396889679bc1e (diff) | |
| download | xesite-0034de35363e7323abc12e3603bfaff19959de72.tar.xz xesite-0034de35363e7323abc12e3603bfaff19959de72.zip | |
fix tests, oops
Signed-off-by: Christine Dodrill <me@christine.website>
| -rw-r--r-- | src/post/mod.rs | 6 |
1 files 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(()) } } |
