Update tests/test_utils_ask_yes_no.py
Run Pytest with Allure and Coverage Reports / tests (push) Successful in 54s
Run Pytest with Allure and Coverage Reports / wiki (push) Successful in 4s

This commit is contained in:
2025-07-11 15:28:33 +02:00
parent 66c4b97aa5
commit 7d6439a31c
+2 -2
View File
@@ -13,8 +13,8 @@ from unittest.mock import patch
[
(None, 'y', True, "Question? [y/n] "),
(None, 'yes', True, "Question? [y/n] "),
(None, 'n', True, "Question? [y/n] "), #False
(None, 'no', True, "Question? [y/n] "), #False
(None, 'n', False, "Question? [y/n] "), #False
(None, 'no', False, "Question? [y/n] "), #False
(None, ['maybe', 'y'], True, "Question? [y/n] "),
(None, ['', 'no'], False, "Question? [y/n] "),
(None, ['invalid', 'yes'], True, "Question? [y/n] "),