diff --git a/src/testing.rs b/src/testing.rs index e677293..44ca9ee 100644 --- a/src/testing.rs +++ b/src/testing.rs @@ -112,7 +112,11 @@ pub struct TestHandle { impl MockDBus { pub async fn new() -> Result { 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()) .spawn()?;