mirror of https://github.com/django/django.git
Removed a Python error message dependency in test_questioner_no_default_bad_user_entry_code().
This commit is contained in:
parent
1833a9eee9
commit
03cadb912c
|
@ -59,7 +59,7 @@ class QuestionerHelperMethodsTests(SimpleTestCase):
|
|||
def test_questioner_no_default_bad_user_entry_code(self, mock_input):
|
||||
with captured_stdout() as stdout, self.assertRaises(SystemExit):
|
||||
self.questioner._ask_default()
|
||||
self.assertIn('Invalid input: unexpected EOF while parsing', stdout.getvalue())
|
||||
self.assertIn('Invalid input: ', stdout.getvalue())
|
||||
|
||||
@mock.patch('builtins.input', side_effect=['', 'n'])
|
||||
def test_questioner_no_default_no_user_entry_boolean(self, mock_input):
|
||||
|
|
Loading…
Reference in New Issue