summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2015-12-01 08:08:41 +0500
committerTim Graham <timograham@gmail.com>2015-12-02 17:25:33 -0500
commit0825f77f7626d2ff175c17d06d726bf2f704f12c (patch)
treeeb793e2935cdaf9dcd05861f8111ec84340d4c6c /tests
parentd3b488f5bd17b4cf662613e0d3d62f9675ff3cdc (diff)
Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.
Diffstat (limited to 'tests')
-rw-r--r--tests/gis_tests/geoapp/tests.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/gis_tests/geoapp/tests.py b/tests/gis_tests/geoapp/tests.py
index 9c8b3f7a8d..a4a4c5e189 100644
--- a/tests/gis_tests/geoapp/tests.py
+++ b/tests/gis_tests/geoapp/tests.py
@@ -652,8 +652,6 @@ class GeoQuerySetTest(TestCase):
Testing the `MakeLine` aggregate.
"""
if not connection.features.supports_make_line_aggr:
- # Only PostGIS has support for the MakeLine aggregate. For other
- # backends, test that NotImplementedError is raised
self.assertRaises(
NotImplementedError,
City.objects.all().aggregate, MakeLine('point')