From 4dfbb13520d2b697cfb1a7c1ea8132b863f386df Mon Sep 17 00:00:00 2001 From: amrbashir Date: Sun, 17 Nov 2024 04:54:07 +0200 Subject: [PATCH] fix compilation --- plugins/updater/tests/app-updater/tests/update.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/updater/tests/app-updater/tests/update.rs b/plugins/updater/tests/app-updater/tests/update.rs index 9d0c66c49c..5821d5adbc 100644 --- a/plugins/updater/tests/app-updater/tests/update.rs +++ b/plugins/updater/tests/app-updater/tests/update.rs @@ -148,7 +148,7 @@ fn test_update(app: &Path, update_bundle: PathBuf, signature: PathBuf, target: & #[cfg(target_os = "linux")] let mut app_cmd = if std::env::var("CI").map(|v| v == "true").unwrap_or_default() { app_cmd = Command::new("xvfb-run"); - app_cmd.arg().arg("--auto-servernum").arg(app); + app_cmd.arg("--auto-servernum").arg(app); }; app_cmd.env("TARGET", target); let output = app_cmd.output().expect("failed to run app");