Skip to content

Commit

Permalink
fix last test
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Oct 24, 2024
1 parent 55a9914 commit dde2dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def test_confirm_ask_yes_no(self, mock_input):

@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)
Expand Down

0 comments on commit dde2dee

Please sign in to comment.