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:
worldofpeace 2019-11-12 12:46:02 -05:00
parent 57bcbb4c99
commit cf74d290ae

View File

@ -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")