From 15a789dda0f4b509c4d826008d99129749056a18 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Mon, 8 Jun 2020 23:19:57 +0200 Subject: [PATCH] Fix fkr tests I had fish_key_reader *installed*, so this worked for me. But really we have the path in $fish_key_reader, so we want to use that variable. --- tests/pexpects/fkr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pexpects/fkr.py b/tests/pexpects/fkr.py index 221797a50..2bafc095f 100644 --- a/tests/pexpects/fkr.py +++ b/tests/pexpects/fkr.py @@ -18,7 +18,7 @@ send, sendline, sleep, expect_prompt, expect_re, expect_str = ( ) expect_prompt() -sendline("exec fish_key_reader -c") +sendline("exec $fish_key_reader -c") # Do we get the expected startup prompt? expect_str("Press a key:")