This commit is contained in:
Skia 2025-09-09 13:18:46 +02:00
parent 2410c1164d
commit 317e463da1

View file

@ -79,6 +79,9 @@ impl Sway {
.expect("Couldn't run swaymsg") .expect("Couldn't run swaymsg")
} }
// work around https://github.com/rust-lang/rust/issues/46379
// TODO: maybe implement that: https://momori.dev/posts/organize-rust-integration-tests-without-dead-code-warning/
#[allow(dead_code)]
pub fn spawn_some_apps(&self) { pub fn spawn_some_apps(&self) {
self.send_command(["exec", "foot -T TERM1"].as_slice()); self.send_command(["exec", "foot -T TERM1"].as_slice());
// Make sure the app are created in the right order. // Make sure the app are created in the right order.