From 60743ca3b861c533b9f78d778738b9e30888afbf Mon Sep 17 00:00:00 2001 From: Brent Westbrook Date: Thu, 5 Dec 2024 14:16:43 -0500 Subject: [PATCH] use xvfb not xephyr for automated tests --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index e047e38..2cff3a9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2920,8 +2920,7 @@ mod tests { #[test] fn main() { // setup xephyr - let mut cmd = - Command::new("Xephyr").arg("-ac").arg(":1").spawn().unwrap(); + let mut cmd = Command::new("Xvfb").arg(":1").spawn().unwrap(); // wait for xephyr to start unsafe {