mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-06 14:40:29 -04:00
Run cargo fmt
This commit is contained in:
parent
2547b8d0ef
commit
02ed562bd0
1 changed files with 5 additions and 1 deletions
|
@ -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()?;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue