summaryrefslogtreecommitdiff
path: root/tests/custom_managers
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 00:58:02 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 01:46:24 +0100
commitbab9123daa5d05150951f74183906a76d2b0cf27 (patch)
tree4fc24535f85f84c69e64c6eac654294725d906df /tests/custom_managers
parent65d1d65d52a87bba22845bcb7c3c921a8789ec19 (diff)
downloaddjango-bab9123daa5d05150951f74183906a76d2b0cf27.tar.gz
Fixed #21268 -- Fixed E303 pep8 warnings
Diffstat (limited to 'tests/custom_managers')
-rw-r--r--tests/custom_managers/tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/custom_managers/tests.py b/tests/custom_managers/tests.py
index f9a9f33d87..021decc455 100644
--- a/tests/custom_managers/tests.py
+++ b/tests/custom_managers/tests.py
@@ -68,7 +68,6 @@ class CustomManagerTests(TestCase):
# manager
self.assertIsInstance(self.p2.books, PublishedBookManager)
-
# The default manager, "objects", doesn't exist, because a custom one
# was provided.
self.assertRaises(AttributeError, lambda: Book.objects)