mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
nixosTests.sddm: make regex case insensitive
I read the q/select your user/i as q/select your user/ not noticing it needed to be case insensitive.
This commit is contained in:
parent
57bcbb4c99
commit
cf74d290ae
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ let
|
|||
user = nodes.machine.config.users.users.alice;
|
||||
in ''
|
||||
start_all()
|
||||
machine.wait_for_text("select your user")
|
||||
machine.wait_for_text("(?i)select your user")
|
||||
machine.screenshot("sddm")
|
||||
machine.send_chars("${user.password}\n")
|
||||
machine.wait_for_file("${user.home}/.Xauthority")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue