From 26ad01719d73823e65c0358a2ee9941e0a888a63 Mon Sep 17 00:00:00 2001 From: Hasan Date: Mon, 18 Jan 2016 12:15:45 +0330 Subject: Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as appropriate. --- tests/app_loading/tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/app_loading') diff --git a/tests/app_loading/tests.py b/tests/app_loading/tests.py index e068508e6c..a79bdaec04 100644 --- a/tests/app_loading/tests.py +++ b/tests/app_loading/tests.py @@ -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 -- cgit v1.3