From 29c1139a6ed08a96ee10cd0a40bb673c71252003 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 22 Aug 2020 17:48:50 -0700 Subject: [PATCH] Correct a missing function call in bind.py Unclear why this test was passing... --- tests/pexpects/bind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pexpects/bind.py b/tests/pexpects/bind.py index 180e5f2e2..59bc6acdd 100644 --- a/tests/pexpects/bind.py +++ b/tests/pexpects/bind.py @@ -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")