This commit is contained in:
Cadey Ratio 2020-09-19 11:13:25 -04:00
parent 67fa3c7bb8
commit 5785ac6e0d
2 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ pub async fn init(cfg: PathBuf) -> Result<State> {
#[cfg(test)]
mod tests {
use anyhow::Result;
use color_eyre::eyre::Result;
#[tokio::test]
async fn init() -> Result<()> {
let _ = pretty_env_logger::try_init();

View File

@ -13,7 +13,7 @@ pub struct Person {
#[cfg(test)]
mod tests {
use anyhow::Result;
use color_eyre::eyre::Result;
#[test]
fn load() -> Result<()> {
let _people: Vec<super::Person> = serde_dhall::from_file("./signalboost.dhall").parse()?;