mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00: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
@ -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…
Reference in New Issue
Block a user