summaryrefslogtreecommitdiff
path: root/tests/gis_tests/geoapp/test_functions.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-05 13:53:03 -0500
committerTim Graham <timograham@gmail.com>2016-02-05 15:11:07 -0500
commit406675b1a03c0568f7768a73e7c279011e56054d (patch)
tree092da11ce8e2773a29576b2d937e188c7a46621d /tests/gis_tests/geoapp/test_functions.py
parent275314512d7dd10065026f02f61931e4c62c9cc8 (diff)
downloaddjango-26176.tar.gz
Fixed #26176 -- Fixed E123 flake8 warnings.26176
Diffstat (limited to 'tests/gis_tests/geoapp/test_functions.py')
-rw-r--r--tests/gis_tests/geoapp/test_functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/geoapp/test_functions.py b/tests/gis_tests/geoapp/test_functions.py
index 50649e2f52..aeb1007c56 100644
--- a/tests/gis_tests/geoapp/test_functions.py
+++ b/tests/gis_tests/geoapp/test_functions.py
@@ -89,7 +89,7 @@ class GISFunctionsTests(TestCase):
chicago_json,
City.objects.annotate(
geojson=functions.AsGeoJSON('point', bbox=True, crs=True, precision=5)
- ).get(name='Chicago').geojson
+ ).get(name='Chicago').geojson
)
@skipUnlessDBFeature("has_AsGML_function")