The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix tests, oops

Signed-off-by: Christine Dodrill <me@christine.website>

+3 -3
+3 -3
src/post/mod.rs
··· 133 133 #[tokio::test] 134 134 async fn blog() { 135 135 let _ = pretty_env_logger::try_init(); 136 - load("blog", None).await.expect("posts to load"); 136 + load("blog").await.expect("posts to load"); 137 137 } 138 138 139 139 #[tokio::test] 140 140 async fn gallery() -> Result<()> { 141 141 let _ = pretty_env_logger::try_init(); 142 - load("gallery", None).await?; 142 + load("gallery").await?; 143 143 Ok(()) 144 144 } 145 145 146 146 #[tokio::test] 147 147 async fn talks() -> Result<()> { 148 148 let _ = pretty_env_logger::try_init(); 149 - load("talks", None).await?; 149 + load("talks").await?; 150 150 Ok(()) 151 151 } 152 152 }