Run rustfmt

This commit is contained in:
Lewin Bormann
2021-03-06 10:20:32 +01:00
parent 6e6fdcfdde
commit 68dba11408

View File

@@ -164,7 +164,10 @@ pub mod tests {
use serde_json as json;
match json::from_str::<ConsoleApplicationSecret>(SECRET) {
Ok(s) => assert!(s.installed.is_some() && s.web.is_none()),
Err(err) => panic!("Encountered error parsing ConsoleApplicationSecret: {}", err),
Err(err) => panic!(
"Encountered error parsing ConsoleApplicationSecret: {}",
err
),
}
}
}