diff options
| author | Tim Graham <timograham@gmail.com> | 2013-09-16 12:52:05 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-16 12:52:05 -0400 |
| commit | 18ffdb1772ba60e085cff8fd9a1d4a7b129b4032 (patch) | |
| tree | 69ea529302e5c498e6b020b03c30e2ccf4a21936 /tests/proxy_models/tests.py | |
| parent | 8d29005524b141da8ff4d9b9bc4d858d43bb7154 (diff) | |
Fixed #17627 -- Renamed util.py files to utils.py
Thanks PaulM for the suggestion and Luke Granger-Brown and
Wiktor KoĆodziej for the initial patch.
Diffstat (limited to 'tests/proxy_models/tests.py')
| -rw-r--r-- | tests/proxy_models/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/proxy_models/tests.py b/tests/proxy_models/tests.py index f9cb132225..988996c9f1 100644 --- a/tests/proxy_models/tests.py +++ b/tests/proxy_models/tests.py @@ -382,7 +382,7 @@ class ProxyModelAdminTests(TestCase): base_user = BaseUser.objects.all()[0] issue = Issue.objects.all()[0] with self.assertNumQueries(7): - collector = admin.util.NestedObjects('default') + collector = admin.utils.NestedObjects('default') collector.collect(ProxyTrackerUser.objects.all()) self.assertTrue(tracker_user in collector.edges.get(None, ())) self.assertTrue(base_user in collector.edges.get(None, ())) |
