mirror of
https://github.com/django/django.git
synced 2025-07-04 01:39:20 +00:00
[3.2.x] Removed 'tests' path prefix in a couple tests.
Backport of 694cf458f16b8d340a3195244196980b2dec34fd from main.
This commit is contained in:
parent
d21543182d
commit
4c2b26174f
@ -1948,7 +1948,7 @@ class WatchForTranslationChangesTests(SimpleTestCase):
|
|||||||
|
|
||||||
def test_i18n_app_dirs(self):
|
def test_i18n_app_dirs(self):
|
||||||
mocked_sender = mock.MagicMock()
|
mocked_sender = mock.MagicMock()
|
||||||
with self.settings(INSTALLED_APPS=['tests.i18n.sampleproject']):
|
with self.settings(INSTALLED_APPS=["i18n.sampleproject"]):
|
||||||
watch_for_translation_changes(mocked_sender)
|
watch_for_translation_changes(mocked_sender)
|
||||||
project_dir = Path(__file__).parent / 'sampleproject' / 'locale'
|
project_dir = Path(__file__).parent / 'sampleproject' / 'locale'
|
||||||
mocked_sender.watch_dir.assert_any_call(project_dir, '**/*.mo')
|
mocked_sender.watch_dir.assert_any_call(project_dir, '**/*.mo')
|
||||||
|
@ -915,9 +915,9 @@ class CookieSessionTests(SessionTestsMixin, SimpleTestCase):
|
|||||||
class ClearSessionsCommandTests(SimpleTestCase):
|
class ClearSessionsCommandTests(SimpleTestCase):
|
||||||
def test_clearsessions_unsupported(self):
|
def test_clearsessions_unsupported(self):
|
||||||
msg = (
|
msg = (
|
||||||
"Session engine 'tests.sessions_tests.no_clear_expired' doesn't "
|
"Session engine 'sessions_tests.no_clear_expired' doesn't "
|
||||||
"support clearing expired sessions."
|
"support clearing expired sessions."
|
||||||
)
|
)
|
||||||
with self.settings(SESSION_ENGINE='tests.sessions_tests.no_clear_expired'):
|
with self.settings(SESSION_ENGINE="sessions_tests.no_clear_expired"):
|
||||||
with self.assertRaisesMessage(management.CommandError, msg):
|
with self.assertRaisesMessage(management.CommandError, msg):
|
||||||
management.call_command('clearsessions')
|
management.call_command('clearsessions')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user