From dde2dee304c4af23561ae92ceef1e1ec8877ac70 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 24 Oct 2024 14:31:41 -0700 Subject: [PATCH] fix last test --- tests/basic/test_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_io.py b/tests/basic/test_io.py index 2b8e566b3..6e8f8291c 100644 --- a/tests/basic/test_io.py +++ b/tests/basic/test_io.py @@ -220,7 +220,7 @@ class TestInputOutput(unittest.TestCase): @patch("builtins.input", side_effect=["d"]) def test_confirm_ask_allow_never(self, mock_input): - io = InputOutput(pretty=False) + io = InputOutput(pretty=False, fancy_input=False) # First call: user selects "Don't ask again" result = io.confirm_ask("Are you sure?", allow_never=True)