From 1093c636e592309ce03663aa78f15f958cfa98e5 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Fri, 22 Dec 2023 12:27:01 +0100 Subject: [PATCH] Add missing expect_prompt to test_sigint.py Somehow the Rust port of reader requires this. --- tests/pexpects/sigint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pexpects/sigint.py b/tests/pexpects/sigint.py index 35e1a7453..f8468b3ae 100644 --- a/tests/pexpects/sigint.py +++ b/tests/pexpects/sigint.py @@ -21,6 +21,7 @@ expect_str("Here we go") expect_prompt() sendline("echo $status") expect_str("130") +expect_prompt() sendline("echo it worked") expect_str("it worked")