From 9b935318ca198f02681d2021c95c979bae1a56ee Mon Sep 17 00:00:00 2001 From: "Markus S. Wamser" Date: Thu, 31 Jul 2025 23:10:43 +0200 Subject: [PATCH] nixosTests.ly: use TTY1 adopt test to changes from https://github.com/NixOS/nixpkgs/pull/428972 --- nixos/tests/ly.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/tests/ly.nix b/nixos/tests/ly.nix index b7bee09c3372..1b57ebfabacd 100644 --- a/nixos/tests/ly.nix +++ b/nixos/tests/ly.nix @@ -39,8 +39,8 @@ in '' start_all() - machine.wait_until_tty_matches("2", "password:") - machine.send_key("ctrl-alt-f2") + machine.wait_until_tty_matches("1", "password:") + machine.send_key("ctrl-alt-f1") machine.sleep(1) machine.screenshot("ly") machine.send_chars("alice") @@ -52,8 +52,8 @@ in machine.wait_for_window("^IceWM ") machine.screenshot("icewm") - machineNoX11.wait_until_tty_matches("2", "password:") - machineNoX11.send_key("ctrl-alt-f2") + machineNoX11.wait_until_tty_matches("1", "password:") + machineNoX11.send_key("ctrl-alt-f1") machineNoX11.sleep(1) machineNoX11.screenshot("ly-no-x11") machineNoX11.send_chars("alice")