From 2575320814712d95bca23a4fff8f33ea1a8fe4af Mon Sep 17 00:00:00 2001 From: Haylin Moore Date: Mon, 8 Sep 2025 14:43:13 +0200 Subject: [PATCH] nixosTests.libresprite: improve test consistency The larger font and shorter test word is making the test far more frequently locally and should stop the hour long runs on hydra --- nixos/tests/libresprite.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/libresprite.nix b/nixos/tests/libresprite.nix index 76417b80ee2e..7fb3378e7910 100644 --- a/nixos/tests/libresprite.nix +++ b/nixos/tests/libresprite.nix @@ -23,10 +23,10 @@ testScript = '' machine.wait_for_x() - machine.succeed("convert -font DejaVu-Sans +antialias label:'IT WORKS' image.png") + machine.succeed("convert -font DejaVu-Sans -pointsize 48 +antialias label:'WORKS' image.png") machine.execute("libresprite image.png >&2 &") machine.wait_for_window("LibreSprite ${pkgs.libresprite.version}-dev") - machine.wait_for_text("IT WORKS") + machine.wait_for_text("WORKS") machine.screenshot("screen") ''; }