summaryrefslogtreecommitdiff
path: root/tests/regressiontests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-12-04 07:53:23 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-12-04 07:53:23 +0000
commit70383ccf68934d3f520cae0938d86c373e625513 (patch)
tree930edc279c36ea6b8468e356ac41bdaa3f090192 /tests/regressiontests
parentcc48f66f733c9b2fdbc817d473c82300e807f779 (diff)
[1.2.X] Fixed a broken test introduced in [14786].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14806 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests')
-rw-r--r--tests/regressiontests/defer_regress/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/regressiontests/defer_regress/tests.py b/tests/regressiontests/defer_regress/tests.py
index affb0e2405..05f1279969 100644
--- a/tests/regressiontests/defer_regress/tests.py
+++ b/tests/regressiontests/defer_regress/tests.py
@@ -21,7 +21,6 @@ class DeferRegressionTest(TestCase):
settings.DEBUG = old_DEBUG
self.assertEqual(starting_queries + n, len(connection.queries))
-
def test_basic(self):
# Deferred fields should really be deferred and not accidentally use
# the field's default value just because they aren't passed to __init__