summaryrefslogtreecommitdiff
path: root/tests/admin_scripts
diff options
context:
space:
mode:
authorTainara Palmeira <tainarapalmeirag@gmail.com>2024-10-28 14:46:20 +0100
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-10-30 11:03:51 +0100
commitb57a8395b58ae47124efcc33455abc7d32553354 (patch)
treeda13f581d7d3051c07492804ae9a3844161d7372 /tests/admin_scripts
parentc5ddc8550c5834e8b1952445ebfb217563de128f (diff)
[5.1.x] Refs #35844 -- Expanded compatibility for expected error messages in command tests on Python 3.12 and 3.13.
Updated CommandTests.test_subparser_invalid_option and CommandDBOptionChoiceTests.test_invalid_choice_db_option to use assertRaisesRegex() for compatibility with modified error messages in Python 3.12, 3.13, and 3.14+.. Backport of fc22fdd34f1e55adde161f5f2dca8db90bbfce80 from main.
Diffstat (limited to 'tests/admin_scripts')
-rw-r--r--tests/admin_scripts/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py
index 2e77f2c97a..6878da6f58 100644
--- a/tests/admin_scripts/tests.py
+++ b/tests/admin_scripts/tests.py
@@ -2304,8 +2304,8 @@ class Discovery(SimpleTestCase):
class CommandDBOptionChoiceTests(SimpleTestCase):
def test_invalid_choice_db_option(self):
expected_error = (
- "Error: argument --database: invalid choice: "
- "'deflaut' (choose from 'default', 'other')"
+ r"Error: argument --database: invalid choice: 'deflaut' "
+ r"\(choose from '?default'?, '?other'?\)"
)
args = [
"changepassword",
@@ -2326,7 +2326,7 @@ class CommandDBOptionChoiceTests(SimpleTestCase):
]
for arg in args:
- with self.assertRaisesMessage(CommandError, expected_error):
+ with self.assertRaisesRegex(CommandError, expected_error):
call_command(arg, "--database", "deflaut", verbosity=0)