mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Correct a missing function call in bind.py
Unclear why this test was passing...
This commit is contained in:
parent
9f4b00d95b
commit
29c1139a6e
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ expect_prompt("git@", unmatched="ctrl-w does not stop at @")
|
|||
|
||||
# Ensure that nul can be bound properly (#3189).
|
||||
send("bind -k nul 'echo nul seen'\r")
|
||||
expect_prompt
|
||||
expect_prompt()
|
||||
send("\0" * 3)
|
||||
send("\r")
|
||||
expect_prompt("nul seen\r\nnul seen\r\nnul seen", unmatched="nul not seen")
|
||||
|
|
Loading…
Reference in a new issue