summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-12-31 11:25:11 -0500
committerTim Graham <timograham@gmail.com>2014-12-31 11:33:27 -0500
commit4abfa73c1861c53d43f0448726346866b04b9b72 (patch)
treeda210b59237361bc89bb323fbcd2a51185251a39 /tests
parentc0bed63889b86f821f76133251566eafb70065f1 (diff)
[1.7.x] Renamed tests for util -> utils moves; refs #17627.
Backport of 8a9b0c15a6c0ef60dea3ba3042317520bc201206 from master
Diffstat (limited to 'tests')
-rw-r--r--tests/admin_utils/__init__.py (renamed from tests/admin_util/__init__.py)0
-rw-r--r--tests/admin_utils/models.py (renamed from tests/admin_util/models.py)0
-rw-r--r--tests/admin_utils/tests.py (renamed from tests/admin_util/tests.py)2
-rw-r--r--tests/forms_tests/tests/test_utils.py (renamed from tests/forms_tests/tests/test_util.py)2
4 files changed, 2 insertions, 2 deletions
diff --git a/tests/admin_util/__init__.py b/tests/admin_utils/__init__.py
index e69de29bb2..e69de29bb2 100644
--- a/tests/admin_util/__init__.py
+++ b/tests/admin_utils/__init__.py
diff --git a/tests/admin_util/models.py b/tests/admin_utils/models.py
index 05fb7c4efb..05fb7c4efb 100644
--- a/tests/admin_util/models.py
+++ b/tests/admin_utils/models.py
diff --git a/tests/admin_util/tests.py b/tests/admin_utils/tests.py
index 20980efffa..3318981a23 100644
--- a/tests/admin_util/tests.py
+++ b/tests/admin_utils/tests.py
@@ -91,7 +91,7 @@ class NestedObjectsTests(TestCase):
n.collect([Vehicle.objects.first()])
-class UtilTests(SimpleTestCase):
+class UtilsTests(SimpleTestCase):
def test_values_from_lookup_field(self):
"""
Regression test for #12654: lookup_field
diff --git a/tests/forms_tests/tests/test_util.py b/tests/forms_tests/tests/test_utils.py
index c2dbc5ba8a..f909bb9893 100644
--- a/tests/forms_tests/tests/test_util.py
+++ b/tests/forms_tests/tests/test_utils.py
@@ -12,7 +12,7 @@ from django.utils.translation import ugettext_lazy
from django.utils.encoding import python_2_unicode_compatible
-class FormsUtilTestCase(TestCase):
+class FormsUtilsTestCase(TestCase):
# Tests for forms/utils.py module.
def test_flatatt(self):