summaryrefslogtreecommitdiff
path: root/tests/custom_columns
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-12-09 00:20:06 +0700
committerTim Graham <timograham@gmail.com>2013-12-10 15:12:48 -0500
commita2814846ca006b4fbf3a893ec52cd9d444b3a3eb (patch)
tree780498814e830e2b8ee6ac435575afdc2e8e63f6 /tests/custom_columns
parent0873200e7f61315ad375061a3dc6d37b514ff985 (diff)
downloaddjango-a2814846ca006b4fbf3a893ec52cd9d444b3a3eb.tar.gz
Fixed E124 pep8 warnings.
Diffstat (limited to 'tests/custom_columns')
-rw-r--r--tests/custom_columns/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/custom_columns/tests.py b/tests/custom_columns/tests.py
index 155279297f..aae3712e53 100644
--- a/tests/custom_columns/tests.py
+++ b/tests/custom_columns/tests.py
@@ -42,7 +42,8 @@ class CustomColumnsTests(TestCase):
)
def test_field_error(self):
- self.assertRaises(FieldError,
+ self.assertRaises(
+ FieldError,
lambda: Author.objects.filter(firstname__exact="John")
)