diff options
author | Tim Graham <timograham@gmail.com> | 2016-02-05 13:53:03 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-02-05 15:11:07 -0500 |
commit | 406675b1a03c0568f7768a73e7c279011e56054d (patch) | |
tree | 092da11ce8e2773a29576b2d937e188c7a46621d /tests/annotations/tests.py | |
parent | 275314512d7dd10065026f02f61931e4c62c9cc8 (diff) | |
download | django-26176.tar.gz |
Fixed #26176 -- Fixed E123 flake8 warnings.26176
Diffstat (limited to 'tests/annotations/tests.py')
-rw-r--r-- | tests/annotations/tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/annotations/tests.py b/tests/annotations/tests.py index 5ff4df100d..c001b4e7f2 100644 --- a/tests/annotations/tests.py +++ b/tests/annotations/tests.py @@ -428,8 +428,9 @@ class NonAggregateAnnotationTestCase(TestCase): F('ticker_name'), F('description'), Value('No Tag'), - function='COALESCE') - ).order_by('name') + function='COALESCE' + ) + ).order_by('name') self.assertQuerysetEqual( qs, [ |