mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +00:00
Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as appropriate.
This commit is contained in:
parent
253adc2b8a
commit
26ad01719d
23 changed files with 124 additions and 221 deletions
|
|
@ -5,7 +5,6 @@ import os
|
|||
from django.apps import apps
|
||||
from django.test import SimpleTestCase
|
||||
from django.test.utils import extend_sys_path
|
||||
from django.utils import six
|
||||
from django.utils._os import upath
|
||||
|
||||
|
||||
|
|
@ -57,7 +56,7 @@ class EggLoadingTest(SimpleTestCase):
|
|||
"""Loading an app from an egg that has an import error in its models module raises that error"""
|
||||
egg_name = '%s/brokenapp.egg' % self.egg_dir
|
||||
with extend_sys_path(egg_name):
|
||||
with six.assertRaisesRegex(self, ImportError, 'modelz'):
|
||||
with self.assertRaisesMessage(ImportError, 'modelz'):
|
||||
with self.settings(INSTALLED_APPS=['broken_app']):
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue