summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/admin_scripts/tests.py6
-rw-r--r--tests/user_commands/tests.py4
2 files changed, 5 insertions, 5 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)
diff --git a/tests/user_commands/tests.py b/tests/user_commands/tests.py
index 65e176620d..2a1e904f3b 100644
--- a/tests/user_commands/tests.py
+++ b/tests/user_commands/tests.py
@@ -400,8 +400,8 @@ class CommandTests(SimpleTestCase):
self.assertIn("bar", out.getvalue())
def test_subparser_invalid_option(self):
- msg = "invalid choice: 'test' (choose from 'foo')"
- with self.assertRaisesMessage(CommandError, msg):
+ msg = r"invalid choice: 'test' \(choose from '?foo'?\)"
+ with self.assertRaisesRegex(CommandError, msg):
management.call_command("subparser", "test", 12)
msg = "Error: the following arguments are required: subcommand"
with self.assertRaisesMessage(CommandError, msg):