From 9d700322b38ea670800a97f2b92dd2fc2c6ff28d Mon Sep 17 00:00:00 2001 From: Kevin Christopher Henry Date: Mon, 9 Sep 2013 04:59:47 -0400 Subject: Fixed #19885 -- cleaned up the django.test namespace * override_settings may now be imported from django.test * removed Approximate from django.test * updated documentation for things importable from django.test Thanks akaariai for the suggestion. --- tests/aggregation/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/aggregation') diff --git a/tests/aggregation/tests.py b/tests/aggregation/tests.py index ce7f4e9b9d..5abd4aaf6c 100644 --- a/tests/aggregation/tests.py +++ b/tests/aggregation/tests.py @@ -6,7 +6,8 @@ import re from django.db import connection from django.db.models import Avg, Sum, Count, Max, Min -from django.test import TestCase, Approximate +from django.test import TestCase +from django.test.utils import Approximate from django.test.utils import CaptureQueriesContext from .models import Author, Publisher, Book, Store -- cgit v1.3