Run cargo fmt

This commit is contained in:
Vicki Pfau 2025-01-21 17:24:56 -08:00
parent 2547b8d0ef
commit 02ed562bd0

View file

@ -112,7 +112,11 @@ pub struct TestHandle {
impl MockDBus { impl MockDBus {
pub async fn new() -> Result<MockDBus> { pub async fn new() -> Result<MockDBus> {
let mut process = Command::new("/usr/bin/dbus-daemon") let mut process = Command::new("/usr/bin/dbus-daemon")
.args(["--nofork", "--print-address", "--config-file=data/test-dbus.conf"]) .args([
"--nofork",
"--print-address",
"--config-file=data/test-dbus.conf",
])
.stdout(Stdio::piped()) .stdout(Stdio::piped())
.spawn()?; .spawn()?;